diff options
author | Matt Joiner <anacrolix@gmail.com> | 2019-11-03 11:58:25 +1100 |
---|---|---|
committer | Matt Joiner <anacrolix@gmail.com> | 2019-11-03 11:58:25 +1100 |
commit | 03100e7851b455380a77ee488fd8d06839c3442f (patch) | |
tree | 514b10b2adcd0f4ef7546c721ab8ca7dcd16a73c /rate | |
parent | Add stm friendly rate limiter (diff) | |
download | stm-03100e7851b455380a77ee488fd8d06839c3442f.tar.gz stm-03100e7851b455380a77ee488fd8d06839c3442f.tar.xz |
Transfer project stewardship to anacrolix
See https://github.com/lukechampine/stm/issues/3#issuecomment-549087541.
Diffstat (limited to 'rate')
-rw-r--r-- | rate/ratelimit.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/rate/ratelimit.go b/rate/ratelimit.go index 8525371..0278283 100644 --- a/rate/ratelimit.go +++ b/rate/ratelimit.go @@ -6,8 +6,8 @@ import ( "math" "time" - "github.com/lukechampine/stm" - "github.com/lukechampine/stm/stmutil" + "github.com/anacrolix/stm" + "github.com/anacrolix/stm/stmutil" ) type numTokens = int |