mirror of
https://github.com/v2fly/v2ray-core.git
synced 2024-11-18 10:26:01 -05:00
dce8764fd7
* Lint: replace golint with revive * Lint: fix lint
14 lines
276 B
Go
14 lines
276 B
Go
package restfulapi
|
|
|
|
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))
|
|
}))
|
|
}
|