This commit is contained in:
nic
2025-07-22 18:20:10 +03:00
commit a31b9310a2
12 changed files with 373 additions and 0 deletions
+1
View File
@@ -0,0 +1 @@
package main
+16
View File
@@ -0,0 +1,16 @@
package main
import (
"log/slog"
"github.com/rombintu/godpn/internal/tracker"
)
func main() {
server := tracker.NewServer()
server.Configure()
if err := server.Run(); err != nil {
slog.Info(err.Error())
}
}