for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
package cmd
import (
"fmt"
"github.com/FlameInTheDark/dtbot/api/currency"
"github.com/FlameInTheDark/dtbot/bot"
)
// CurrencyCommand Translate handler
func CurrencyCommand(ctx bot.Context) {
ctx.ReplyEmbed(fmt.Sprintf("%v:", ctx.Loc("currency")), currency.GetCurrency(&ctx))
}