okipy/example/inlines.py
2024-05-21 03:19:53 +02:00

15 lines
199 B
Python

from os.path import dirname, join
import sys
sys.path.append(join(dirname(dirname(__file__)), "src"))
from okipy import test
def add(a, b):
return a + b
@test()
def it_works(ctx):
pass