mirror of
https://github.com/Myzel394/config-lsp.git
synced 2025-06-18 23:15:26 +02:00
19 lines
379 B
Go
19 lines
379 B
Go
package main
|
|
|
|
import (
|
|
roothandler "config-lsp/root-handler"
|
|
|
|
"github.com/tliron/commonlog"
|
|
|
|
// Must include a backend implementation
|
|
// See CommonLog for other options: https://github.com/tliron/commonlog
|
|
_ "github.com/tliron/commonlog/simple"
|
|
)
|
|
|
|
func main() {
|
|
// This increases logging verbosity (optional)
|
|
commonlog.Configure(1, nil)
|
|
|
|
roothandler.SetUpRootHandler()
|
|
}
|