tsk-5: Add contact (#7)

Closes #5

Reviewed-on: phoenix/textsender-api#7
Co-authored-by: phoenix <kundeng00@pm.me>
Co-committed-by: phoenix <kundeng00@pm.me>
This commit is contained in:
phoenix
2025-11-03 22:27:34 +00:00
committed by phoenix
parent 3db003fc47
commit 96fc87ea5e
16 changed files with 911 additions and 78 deletions
+13 -3
View File
@@ -1,7 +1,17 @@
package version
import "fmt"
var (
Version = "dev"
Commit = "none"
Date = "unknown"
Version = "dev"
BuildTime = "none"
Commit = "unknown"
GoVersion = "unknown"
)
func String() string {
return fmt.Sprintf(
"Version: %s\nBuild Date: %s\nCommit: %s\nGo Version: %s",
Version, BuildTime, Commit, GoVersion,
)
}