2023-02-02 10:55:24 +01:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"time"
|
|
|
|
|
|
|
|
"forge.cadoles.com/Cadoles/emissary/internal/command"
|
|
|
|
"forge.cadoles.com/Cadoles/emissary/internal/command/agent"
|
2023-03-10 11:28:37 +01:00
|
|
|
"forge.cadoles.com/Cadoles/emissary/internal/command/api"
|
2023-03-24 23:17:55 +01:00
|
|
|
|
|
|
|
_ "forge.cadoles.com/Cadoles/emissary/internal/imports/spec"
|
2023-02-02 10:55:24 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
// nolint: gochecknoglobals
|
|
|
|
var (
|
|
|
|
GitRef = "unknown"
|
|
|
|
ProjectVersion = "unknown"
|
|
|
|
DefaultConfigPath = ""
|
|
|
|
BuildDate = time.Now().UTC().Format(time.RFC3339)
|
|
|
|
)
|
|
|
|
|
|
|
|
func main() {
|
2023-03-10 11:28:37 +01:00
|
|
|
command.Main(BuildDate, ProjectVersion, GitRef, DefaultConfigPath, agent.Root(), api.Root())
|
2023-02-02 10:55:24 +01:00
|
|
|
}
|