1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-09-29 23:36:25 -04:00
v2fly/app/restful-api/config.go
2021-10-28 18:34:19 +08:00

14 lines
277 B
Go

package restful_api
import (
"context"
"github.com/v2fly/v2ray-core/v4/common"
)
func init() {
common.Must(common.RegisterConfig((*Config)(nil), func(ctx context.Context, config interface{}) (interface{}, error) {
return newRestfulService(ctx, config.(*Config))
}))
}