Files
cash-code-test/commands/command.go
T
2019-12-17 07:25:03 +11:00

9 lines
162 B
Go

package commands
import "github.com/wahyd4/cash/domains"
// ICommand defines the banking app command
type ICommand interface {
Run(bank *domains.Bank) error
}