18 lines
256 B
Go
18 lines
256 B
Go
package sub2api
|
|
|
|
import (
|
|
"github.com/QuantumNous/new-api/relay/channel/newapi"
|
|
)
|
|
|
|
type Adaptor struct {
|
|
newapi.Adaptor
|
|
}
|
|
|
|
func (a *Adaptor) GetModelList() []string {
|
|
return ModelList
|
|
}
|
|
|
|
func (a *Adaptor) GetChannelName() string {
|
|
return ChannelName
|
|
}
|