25 lines
571 B
Go
25 lines
571 B
Go
package main
|
|
|
|
import (
|
|
"time"
|
|
|
|
"forge.cadoles.com/Cadoles/emissary/internal/command"
|
|
"forge.cadoles.com/Cadoles/emissary/internal/command/client"
|
|
"forge.cadoles.com/Cadoles/emissary/internal/command/server"
|
|
|
|
_ "github.com/jackc/pgx/v5/stdlib"
|
|
_ "modernc.org/sqlite"
|
|
)
|
|
|
|
// nolint: gochecknoglobals
|
|
var (
|
|
GitRef = "unknown"
|
|
ProjectVersion = "unknown"
|
|
DefaultConfigPath = ""
|
|
BuildDate = time.Now().UTC().Format(time.RFC3339)
|
|
)
|
|
|
|
func main() {
|
|
command.Main(BuildDate, ProjectVersion, GitRef, DefaultConfigPath, server.Root(), client.Root())
|
|
}
|