This commit is contained in:
JOLIMAITRE Matthieu 2024-05-21 03:19:53 +02:00
commit f4c09d21fe
18 changed files with 443 additions and 0 deletions

15
example/inlines.py Normal file
View file

@ -0,0 +1,15 @@
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