chore: move everything out from src

This commit is contained in:
2025-03-03 06:52:47 +01:00
parent 469e737bb3
commit 23d1aaad55
19 changed files with 1 additions and 0 deletions

22
command/info.go Normal file
View File

@@ -0,0 +1,22 @@
package command
import "alma/helpers"
type InfoCommand struct {
}
func (InfoCommand) GetName() string {
return "info"
}
func (InfoCommand) GetHelpText() {
println(
`Usage:
alma info
alma info [module]
alma info [repository] [module]`)
}
func (InfoCommand) Run(args []string) {
println("Platform is '" + helpers.GetOsIdentifier() + "'")
}