sourcegraph/cmd/symbols/main.go
Quinn Slack e5baad0ccd
remove more remannts of OSS build (#58253)
Removes:

- doc mentions of OSS build
- linters related to OSS/enterprise code
- unused `osscmd` package and related definitions
2023-11-10 07:59:03 +00:00

15 lines
413 B
Go

// Command symbols is a service that serves code symbols (functions, variables, etc.) from a repository at a
// specific commit.
package main
import (
"github.com/sourcegraph/sourcegraph/cmd/symbols/shared"
"github.com/sourcegraph/sourcegraph/internal/sanitycheck"
"github.com/sourcegraph/sourcegraph/internal/service/svcmain"
)
func main() {
sanitycheck.Pass()
svcmain.SingleServiceMain(shared.Service)
}