mirror of
https://github.com/shtorm-7/sing-box-extended.git
synced 2026-05-14 00:51:12 +03:00
7 lines
93 B
Go
7 lines
93 B
Go
package traffic
|
|
|
|
type TrafficLimiter interface {
|
|
Can(n uint64) error
|
|
Add(n uint64) error
|
|
}
|