mirror-nourybot-matrix/internal/commands/ping.go

13 lines
221 B
Go

package commands
import (
"fmt"
"github.com/lyx0/nourybot-matrix/internal/common"
)
func Ping() (string, error) {
n := common.GetCommandsUsed()
resp := fmt.Sprintf("Pong! Commands used: %v", n)
return resp, nil
}