fabric/youtube/youtube.go
2024-08-17 16:17:56 +02:00

26 lines
413 B
Go

package youtube
import (
"github.com/danielmiessler/fabric/common"
)
func NewYouTube() (ret *YouTube) {
label := "YouTube"
ret = &YouTube{}
ret.Configurable = &common.Configurable{
Label: label,
EnvNamePrefix: common.BuildEnvVariablePrefix(label),
}
ret.ApiKey = ret.AddSetupQuestion("API key", false)
return
}
type YouTube struct {
*common.Configurable
ApiKey *common.SetupQuestion
}