/ Published in: Python
Expand |
Embed | Plain Text
#!/usr/bin/env python # -*- coding: utf-8 -*- from libs.aeweb import Web,log class MyApp1(Web): def GET(self): return "hello" def main(): Web.app( [('/', MyApp1)] ).run() if __name__ == '__main__': main()
You need to login to post a comment.
