mirror of
https://github.com/lyx0/nourybot.git
synced 2024-11-13 19:49:55 +01:00
22 lines
462 B
Go
22 lines
462 B
Go
|
package commands
|
||
|
|
||
|
import (
|
||
|
"github.com/gempir/go-twitch-irc/v3"
|
||
|
"github.com/lyx0/nourybot/pkg/common"
|
||
|
"github.com/lyx0/nourybot/pkg/decapi"
|
||
|
"go.uber.org/zap"
|
||
|
)
|
||
|
|
||
|
// ()currency 10 USD to EUR
|
||
|
func Currency(target, currAmount, currFrom, currTo string, tc *twitch.Client) {
|
||
|
sugar := zap.NewExample().Sugar()
|
||
|
defer sugar.Sync()
|
||
|
|
||
|
resp, err := decapi.Currency(currAmount, currFrom, currTo)
|
||
|
if err != nil {
|
||
|
sugar.Error(err)
|
||
|
}
|
||
|
|
||
|
common.Send(target, resp, tc)
|
||
|
}
|