mirror of
https://github.com/teamhanko/hanko.git
synced 2025-11-01 22:28:27 +08:00
15 lines
234 B
Go
15 lines
234 B
Go
/*
|
|
Copyright © 2022 Hanko GmbH <developers@hanko.io>
|
|
*/
|
|
package main
|
|
|
|
import (
|
|
"github.com/teamhanko/hanko/backend/build_info"
|
|
"github.com/teamhanko/hanko/backend/cmd"
|
|
)
|
|
|
|
func main() {
|
|
build_info.PrintBuildInfo()
|
|
cmd.Execute()
|
|
}
|