forked from EinStack/glide
-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.go
32 lines (24 loc) · 738 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
29
30
31
32
package main
import (
"log"
"github.com/EinStack/glide/pkg/cmd"
)
// @title Glide
// @version 0.0.1
// @description API documentation for Glide, an open-source lightweight high-performance model gateway
// @contact.name EinStack Community
// @contact.url https://github.com/EinStack/glide/
// @contact.email [email protected]
// @license.name Apache 2.0
// @license.url https://github.com/EinStack/glide/blob/develop/LICENSE
// @externalDocs.description Documentation
// @externalDocs.url https://glide.einstack.ai/
// @host localhost:9099
// @BasePath /
// @schemes http
func main() {
cli := cmd.NewCLI()
if err := cli.Execute(); err != nil {
log.Fatalf("💥Glide has finished with error: %v", err)
}
}