13 lines
174 B
Go
13 lines
174 B
Go
package main
|
|
|
|
import (
|
|
"net/http"
|
|
|
|
"git.kocoder.xyz/kocoded/vt/core"
|
|
"git.kocoder.xyz/kocoded/vt/fx"
|
|
)
|
|
|
|
func main() {
|
|
core.Main(fx.SetupOTelSDK, func(*http.Server) {})
|
|
}
|