mirror of
https://github.com/v2fly/v2ray-core.git
synced 2024-11-16 09:26:21 -05:00
13 lines
276 B
Go
13 lines
276 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))
|
|
}))
|
|
}
|