mirror of
https://github.com/memohai/Memoh.git
synced 2026-04-25 07:00:48 +09:00
13 lines
164 B
Go
13 lines
164 B
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/memohai/memoh/internal/version"
|
|
)
|
|
|
|
func runVersion() error {
|
|
fmt.Printf("memoh %s\n", version.GetInfo())
|
|
return nil
|
|
}
|