mirror of
https://github.com/wahyd4/cash-code-test.git
synced 2026-08-09 05:16:05 +10:00
9 lines
162 B
Go
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
|
|
}
|