diff --git a/pak/__init__.py b/pak/__init__.py
index e82ea258624cc9eb0e8d3c46e8484bc0cb313157..4be58df4d195daaf5212663cc718193b5a705959 100644
--- a/pak/__init__.py
+++ b/pak/__init__.py
@@ -1,2 +1,2 @@
-from .hello import hello
-
+def main():
+    return "Hello, World!"
\ No newline at end of file
diff --git a/pak/hello.py b/pak/hello.py
deleted file mode 100644
index b3219b6eb4c93f5bd864a1e0264443107339d517..0000000000000000000000000000000000000000
--- a/pak/hello.py
+++ /dev/null
@@ -1,2 +0,0 @@
-def hello():
-    return "Hello, World!"
\ No newline at end of file