mirror of
https://github.com/httprunner/httprunner.git
synced 2026-07-14 00:41:58 +08:00
10 lines
128 B
Python
10 lines
128 B
Python
from httprunner import __version__
|
|
|
|
|
|
def get_httprunner_version():
|
|
return __version__
|
|
|
|
|
|
def sum_two(m, n):
|
|
return m + n
|