mirror of
https://github.com/wahyd4/kt-connect.git
synced 2026-08-11 06:16:07 +10:00
10 lines
168 B
Go
10 lines
168 B
Go
package server
|
|
|
|
import "github.com/alibaba/kt-connect/pkg/apiserver/common"
|
|
|
|
// Init ...
|
|
func Init(context common.Context) {
|
|
r := NewRouter(context)
|
|
r.Run(":8000")
|
|
}
|