Created
July 31, 2019 14:18
-
-
Save kamal-kambe/d4c827926cf9a2ac85ef0bc5a45b16c5 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package service | |
import "encoding/json" | |
type BaseRepository interface { | |
GetRows(models []string) json.RawMessage | |
} | |
type StorageFactory interface { | |
NewBaseRepository() BaseRepository | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment