change: bump verison

This commit is contained in:
debugtalk
2022-10-08 12:36:25 +08:00
parent 84c88d7dde
commit ed15e31805
24 changed files with 1387 additions and 5 deletions

23
demo/.debugtalk_gen.py Normal file
View File

@@ -0,0 +1,23 @@
# NOTE: Generated By hrp v4.1.4, DO NOT EDIT!
import sys
import os
sys.path.insert(0, os.path.dirname(os.path.abspath(__file__)))
from debugtalk import *
if __name__ == "__main__":
import funppy
funppy.register("get_user_agent", get_user_agent)
funppy.register("sleep", sleep)
funppy.register("sum", sum)
funppy.register("sum_ints", sum_ints)
funppy.register("sum_two_int", sum_two_int)
funppy.register("sum_two_string", sum_two_string)
funppy.register("sum_strings", sum_strings)
funppy.register("concatenate", concatenate)
funppy.register("setup_hook_example", setup_hook_example)
funppy.register("teardown_hook_example", teardown_hook_example)
funppy.serve()