mirror of
https://github.com/openziti/zrok.git
synced 2024-11-07 08:44:14 +01:00
11 lines
252 B
Go
11 lines
252 B
Go
package limits
|
|
|
|
import (
|
|
"github.com/jmoiron/sqlx"
|
|
"github.com/openziti/zrok/controller/store"
|
|
)
|
|
|
|
type AccountAction interface {
|
|
HandleAccount(a *store.Account, rxBytes, txBytes int64, bwc store.BandwidthClass, ul *userLimits, trx *sqlx.Tx) error
|
|
}
|