mirror of
https://github.com/mautrix/discord.git
synced 2025-03-14 14:15:37 +00:00
16 lines
234 B
Go
16 lines
234 B
Go
package version
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"go.mau.fi/mautrix-discord/consts"
|
|
"go.mau.fi/mautrix-discord/globals"
|
|
)
|
|
|
|
type Cmd struct{}
|
|
|
|
func (c *Cmd) Run(g *globals.Globals) error {
|
|
fmt.Printf("%s %s\n", consts.Name, String)
|
|
|
|
return nil
|
|
}
|