File size: 556 Bytes
95eee3d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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()