aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/main.py
diff options
context:
space:
mode:
authorHsiangNianian <i@jyunko.cn>2025-12-30 11:01:56 +0800
committerHsiangNianian <i@jyunko.cn>2025-12-30 11:01:56 +0800
commit7deb91a09ee23bf9beba82b661d56d5af991ebf4 (patch)
treed879c0e5ee0c1a377c209db2c93a93e0efa53e81 /main.py
parente6d626670fa35cb8a4c386017ade767e462df6ed (diff)
downloadbase-dataset-7deb91a09ee23bf9beba82b661d56d5af991ebf4.tar.gz
base-dataset-7deb91a09ee23bf9beba82b661d56d5af991ebf4.zip
feat: Initialize project with main script and configuration filesHEADmain
Diffstat (limited to 'main.py')
-rw-r--r--main.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/main.py b/main.py
new file mode 100644
index 0000000..36b2daf
--- /dev/null
+++ b/main.py
@@ -0,0 +1,6 @@
+def main():
+ print("Hello from base-dataset!")
+
+
+if __name__ == "__main__":
+ main()