mirror of
https://github.com/danielmiessler/fabric
synced 2024-11-08 07:11:06 +00:00
26 lines
412 B
Go
26 lines
412 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", true)
|
|
|
|
return
|
|
}
|
|
|
|
type YouTube struct {
|
|
*common.Configurable
|
|
ApiKey *common.SetupQuestion
|
|
}
|