sourcegraph/cmd/precise-code-intel-worker/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

13 lines
302 B
Go

package main
import (
"github.com/sourcegraph/sourcegraph/cmd/precise-code-intel-worker/shared"
"github.com/sourcegraph/sourcegraph/internal/sanitycheck"
"github.com/sourcegraph/sourcegraph/internal/service/svcmain"
)
func main() {
sanitycheck.Pass()
svcmain.SingleServiceMain(shared.Service)
}