kenken999's picture
m
e2444ac
raw
history blame contribute delete
556 Bytes
from app.routes import *
def main():
user1 = create_user("John Doe", "[email protected]")
user2 = create_user("Jane Doe", "[email protected]")
post1 = create_post("Hello World", "This is my first post", user1)
post2 = create_post("Hello Again", "This is my second post", user2)
comment1 = create_comment("Nice post!", post1, user1)
comment2 = create_comment("Great post!", post2, user2)
print("Users:", get_users())
print("Posts:", get_posts())
print("Comments:", get_comments())
if __name__ == "__main__":
main()