6 lines
106 B
Go
6 lines
106 B
Go
|
package stackops
|
||
|
|
||
|
type StackOperation interface {
|
||
|
Execute(stack *CalendarStack, filePath string) error
|
||
|
}
|