mirror of
https://github.com/sourcegraph/sourcegraph.git
synced 2026-02-06 18:11:48 +00:00
11 lines
237 B
Go
11 lines
237 B
Go
package main
|
|
|
|
import (
|
|
"github.com/sourcegraph/sourcegraph/dev/linearhooks/internal/service"
|
|
"github.com/sourcegraph/sourcegraph/lib/managedservicesplatform/runtime"
|
|
)
|
|
|
|
func main() {
|
|
runtime.Start[service.Config](service.Service{})
|
|
}
|