mirror of
https://github.com/httprunner/httprunner.git
synced 2026-05-14 06:27:36 +08:00
24 lines
715 B
Python
24 lines
715 B
Python
# NOTE: Generated By hrp v4.1.6, 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()
|