Extracted dict to Fetcher

This commit is contained in:
Artyom Belousov 2021-02-07 15:18:46 +03:00
parent 1f69282c73
commit 4da8e94bcc
7 changed files with 22 additions and 19 deletions

View file

@ -1,3 +1,7 @@
package cardsinfo
type Fetcher struct{}
import "io"
type Fetcher struct {
Dict io.Reader
}