summaryrefslogtreecommitdiffstatshomepage
path: root/examples/rule-singlefile.py
blob: 32f4182d56799dc0305df4bd97b82d6e32d82719 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
from HydroRollCore import Rule, Core

core = Core()

class MyRule(Rule):
    ...
    

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