コード例 #1
0
ファイル: main.go プロジェクト: elct9620/go-plurk-robot
func setupClient(cmd *cobra.Command, args []string) {
	setupLogger()
	if Client == nil {
		Client = plurk.New(AppKey, AppSecret, Token, TokenSecret)
	}
}
コード例 #2
0
ファイル: robot.go プロジェクト: elct9620/go-plurk-robot
// Setup plurk client to using plurk feature
func SetupPlurk(AppKey string, AppSecret string, Token string, TokenSecret string) {
	client = plurk.New(AppKey, AppSecret, Token, TokenSecret)
}