Add core packages, configuration system, and initial application structure

This commit is contained in:
2025-08-21 11:04:03 +01:00
parent b8db587d7b
commit ecaf52b98f
18 changed files with 12889 additions and 0 deletions

1
pkg/version/version Normal file
View File

@@ -0,0 +1 @@
v0.0.1

12
pkg/version/version.go Normal file
View File

@@ -0,0 +1,12 @@
package version
import (
_ "embed"
)
//go:embed version
var V string
var Description = "relay powered by the orly framework https://next.orly.dev"
var URL = "https://nextorly.dev"