added repeat interface
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Jake Hillion 2021-04-09 23:05:49 +01:00
parent ca2f3060db
commit 0c00a4306d

9
proxy/repeats.go Normal file
View File

@ -0,0 +1,9 @@
package proxy
type RepeatGenerator interface {
Generate() []byte
}
type RepeatVerifier interface {
Verify(in []byte) error
}