From 69f04b93aecf1bd22288ea1fc9504e9a7860a5e1 Mon Sep 17 00:00:00 2001 From: moecinnamo Date: Fri, 21 Nov 2025 22:00:59 +0800 Subject: [PATCH] New directory structure enhances readability --- cmd/main/main.go | 1 + go.mod | 3 +++ internal/core/core.go | 1 + 3 files changed, 5 insertions(+) create mode 100644 cmd/main/main.go create mode 100644 go.mod create mode 100644 internal/core/core.go diff --git a/cmd/main/main.go b/cmd/main/main.go new file mode 100644 index 0000000..06ab7d0 --- /dev/null +++ b/cmd/main/main.go @@ -0,0 +1 @@ +package main diff --git a/go.mod b/go.mod new file mode 100644 index 0000000..cc92133 --- /dev/null +++ b/go.mod @@ -0,0 +1,3 @@ +module github.com/OmniX-Space/MeowBox-Core + +go 1.25.0 diff --git a/internal/core/core.go b/internal/core/core.go new file mode 100644 index 0000000..9a8bc95 --- /dev/null +++ b/internal/core/core.go @@ -0,0 +1 @@ +package core