aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/examples/rule-singlefile.py
blob: 04df25e17b9d05c0f2f811b96c02ffdb8c2c1310 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
from infini import Rule, Core

core = Core()

class MyRule(Rule):
    ...
    

if __name__ == "__main__":
    core.run()