Reorganize code by removing unused files, restructuring package organization, and updating import references to new paths. This simplifies handling of smart and protocol-related operations, improves maintainability, and eliminates redundancy.
9 lines
111 B
Go
9 lines
111 B
Go
package protocol
|
|
|
|
type TriggerType uint
|
|
|
|
const (
|
|
TriggerTypeManual TriggerType = iota
|
|
TriggerTypeAutomatic
|
|
)
|