FILE / ScuroNeko/mtg

ipblocklist/files/init.go

Исходный файл и его история в репозитории.
FILE e0850869ba3e709f76924a10edbc63d168f875b1
Files
mtg/ipblocklist/files/init.go
T
2021-11-29 16:25:33 +03:00

15 lines
201 B
Go

package files
import (
"context"
"errors"
"io"
)
var ErrBadHTTPClient = errors.New("incorrect http client")
type File interface {
Open(context.Context) (io.ReadCloser, error)
String() string
}