Another big refactor: Back to a single folder for persistence implementation

This commit is contained in:
Deluan 2020-01-14 18:23:29 -05:00
parent 08e096c569
commit a99c3a8af3
27 changed files with 177 additions and 171 deletions

View file

@ -2,9 +2,7 @@ package persistence
import "reflect"
type ProviderIdentifier string
func CollectValue(collection interface{}, getValue func(item interface{}) string) []string {
func collectField(collection interface{}, getValue func(item interface{}) string) []string {
s := reflect.ValueOf(collection)
result := make([]string, s.Len())