mirror of
https://github.com/openziti/zrok.git
synced 2025-01-11 08:29:10 +01:00
16 lines
445 B
Go
16 lines
445 B
Go
package limits
|
|
|
|
import "github.com/openziti/zrok/controller/store"
|
|
|
|
type AccountAction interface {
|
|
HandleAccount(a *store.Account, rxBytes, txBytes int64, limit *BandwidthPerPeriod) error
|
|
}
|
|
|
|
type EnvironmentAction interface {
|
|
HandleEnvironment(e *store.Environment, rxBytes, txBytes int64, limit *BandwidthPerPeriod) error
|
|
}
|
|
|
|
type ShareAction interface {
|
|
HandleShare(s *store.Share, rxBytes, txBytes int64, limit *BandwidthPerPeriod) error
|
|
}
|