diff options
Diffstat (limited to 'examples')
| -rw-r--r-- | examples/rule-pypackage/__init__.py | 0 | ||||
| -rw-r--r-- | examples/rule-pypackage/config.py | 0 | ||||
| -rw-r--r-- | examples/rule-singlefile.py | 10 |
3 files changed, 10 insertions, 0 deletions
diff --git a/examples/rule-pypackage/__init__.py b/examples/rule-pypackage/__init__.py new file mode 100644 index 00000000..e69de29b --- /dev/null +++ b/examples/rule-pypackage/__init__.py diff --git a/examples/rule-pypackage/config.py b/examples/rule-pypackage/config.py new file mode 100644 index 00000000..e69de29b --- /dev/null +++ b/examples/rule-pypackage/config.py diff --git a/examples/rule-singlefile.py b/examples/rule-singlefile.py new file mode 100644 index 00000000..32f4182d --- /dev/null +++ b/examples/rule-singlefile.py @@ -0,0 +1,10 @@ +from HydroRollCore import Rule, Core + +core = Core() + +class MyRule(Rule): + ... + + +if __name__ == "__main__": + core.run()
\ No newline at end of file |
