gokultp/go-envparser

View on GitHub
internal/commands/icommand.go

Summary

Maintainability
A
0 mins
Test Coverage
package commands

// Command is the interface implemented by types
type Command interface {
    InitFlags()
    ParseFlags([]string)
    Help()
    Exec() error
}