iHotFix.go 93 B

1234567
  1. package ifaces
  2. type IHotFix interface {
  3. GetKey() string
  4. Process() (interface{}, error)
  5. }