| 12345678910111213 |
- 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))
- }))
- }
|