mirror of
https://github.com/sourcegraph/sourcegraph.git
synced 2026-02-06 20:11:54 +00:00
Removes: - doc mentions of OSS build - linters related to OSS/enterprise code - unused `osscmd` package and related definitions
13 lines
287 B
Go
13 lines
287 B
Go
package main
|
|
|
|
import (
|
|
"github.com/sourcegraph/sourcegraph/cmd/embeddings/shared"
|
|
"github.com/sourcegraph/sourcegraph/internal/sanitycheck"
|
|
"github.com/sourcegraph/sourcegraph/internal/service/svcmain"
|
|
)
|
|
|
|
func main() {
|
|
sanitycheck.Pass()
|
|
svcmain.SingleServiceMain(shared.Service)
|
|
}
|