1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-06-26 17:35:23 +00:00
v2fly/app/stats/config.go

16 lines
269 B
Go
Raw Normal View History

2019-02-01 19:08:21 +00:00
// +build !confonly
2018-03-30 17:56:59 +00:00
package stats
import (
"context"
"v2ray.com/core/common"
)
func init() {
common.Must(common.RegisterConfig((*Config)(nil), func(ctx context.Context, config interface{}) (interface{}, error) {
return NewManager(ctx, config.(*Config))
}))
}