enbas/internal/executor/version.go
Dan Anglin de740de211
checkpoint: move build information to internal package
- move the build information to the internal package to simplify the
  version executor.
- add the Executor interface to internal/executor/executors.go
2024-08-12 12:39:43 +01:00

7 lines
109 B
Go

package executor
func (v *VersionExecutor) Execute() error {
v.printer.PrintVersion(v.full)
return nil
}