tsk-5: Fetch token (#9)

Closes #5

Reviewed-on: #9
Co-authored-by: phoenix <kundeng00@pm.me>
Co-committed-by: phoenix <kundeng00@pm.me>
This commit is contained in:
phoenix
2025-11-28 16:54:11 +00:00
committed by phoenix
parent c47941acaf
commit cef7f8a150
9 changed files with 171 additions and 13 deletions
+12
View File
@@ -0,0 +1,12 @@
package config
import (
"flag"
)
func CheckVersionFlag() *bool {
versionFlag := flag.Bool("version", false, "Print version information")
flag.Parse()
return versionFlag
}