()
| 10 | ) |
| 11 | |
| 12 | func main() { |
| 13 | bugsnag.Configure(bugsnag.Configuration{ |
| 14 | APIKey: metadata.BugSnagAPIKey, |
| 15 | AppType: "languageServer", |
| 16 | AppVersion: metadata.Version, |
| 17 | // if it is the empty string it will not be set |
| 18 | Hostname: "REDACTED", |
| 19 | Logger: log.New(os.Stderr, "", log.LstdFlags), |
| 20 | ProjectPackages: []string{"main", "github.com/docker/docker-language-server/**"}, |
| 21 | ReleaseStage: "production", |
| 22 | }) |
| 23 | |
| 24 | cli.Execute() |
| 25 | } |