9 lines
153 B
Python
9 lines
153 B
Python
"""Main entrypoint for bookbot"""
|
|
|
|
def main():
|
|
"""Main method for bookbot"""
|
|
print("Hello from bookbot!")
|
|
|
|
if __name__ == "__main__":
|
|
main()
|