FILE / ScuroNeko/mtg

ipblocklist/files/init.go

Исходный файл и его история в репозитории.
FILE cbe5b8c94ecc944b78e11e32c48cae6e1c8e189b
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
}