-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmain.go
28 lines (25 loc) · 806 Bytes
/
main.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
package main
import (
"github.com/go-feature-flag/flag-management/server/cmd"
"log"
)
// version, releaseDate are override by the makefile during the build.
var version = "localdev"
// @title GO Feature Flag - flag management API
// @description.markdown
// @contact.name GO feature flag management API
// @contact.url https://gofeatureflag.org
// @contact.email [email protected]
// @license.name MIT
// @license.url https://github.com/thomaspoignant/go-feature-flag/blob/main/LICENSE
// @x-logo {"url":"https://raw.githubusercontent.com/thomaspoignant/go-feature-flag/main/logo_128.png"}
// @BasePath /
// @in header
// @name Authorization
func main() {
command, err := cmd.NewGOFeatureFlagManagementAPICommand(cmd.APICommandOptions{})
if err != nil {
log.Fatal(err)
}
command.Run()
}