From 89f71ec7e7432b09614417b8b3925e559c17a024 Mon Sep 17 00:00:00 2001 From: lorsan Date: Sat, 4 Apr 2026 10:11:59 +0300 Subject: [PATCH] Base structure --- cmd/agent/main.go | 1 + cmd/hub/main.go | 1 + cmd/telegram/main.go | 1 + go.mod | 3 +++ 4 files changed, 6 insertions(+) create mode 100644 cmd/agent/main.go create mode 100644 cmd/hub/main.go create mode 100644 cmd/telegram/main.go create mode 100644 go.mod diff --git a/cmd/agent/main.go b/cmd/agent/main.go new file mode 100644 index 0000000..06ab7d0 --- /dev/null +++ b/cmd/agent/main.go @@ -0,0 +1 @@ +package main diff --git a/cmd/hub/main.go b/cmd/hub/main.go new file mode 100644 index 0000000..06ab7d0 --- /dev/null +++ b/cmd/hub/main.go @@ -0,0 +1 @@ +package main diff --git a/cmd/telegram/main.go b/cmd/telegram/main.go new file mode 100644 index 0000000..06ab7d0 --- /dev/null +++ b/cmd/telegram/main.go @@ -0,0 +1 @@ +package main diff --git a/go.mod b/go.mod new file mode 100644 index 0000000..b62c57e --- /dev/null +++ b/go.mod @@ -0,0 +1,3 @@ +module github.com/lorsanstand/HomeOps-Hub + +go 1.26.1