search/service/gofound-service.go

13 lines
208 B
Go

package service
import (
"myschools.me/suguo/gofound/global"
found "myschools.me/suguo/gofound/sdk"
)
var gofound found.Client
func GoFoundInit(conf *global.Config) {
gofound = *found.NewClient(conf)
}