mirror of
https://github.com/p4gefau1t/trojan-go.git
synced 2024-04-21 12:21:34 +00:00
13 lines
221 B
Go
13 lines
221 B
Go
package server
|
|
|
|
import (
|
|
"github.com/p4gefau1t/trojan-go/config"
|
|
"github.com/p4gefau1t/trojan-go/proxy/client"
|
|
)
|
|
|
|
func init() {
|
|
config.RegisterConfigCreator(Name, func() interface{} {
|
|
return new(client.Config)
|
|
})
|
|
}
|