mirror of
https://github.com/sourcegraph/sourcegraph.git
synced 2026-02-06 13:11:49 +00:00
Removes: - doc mentions of OSS build - linters related to OSS/enterprise code - unused `osscmd` package and related definitions
15 lines
413 B
Go
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)
|
|
}
|