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