package models import "strings" type StringSlice []string func (s *StringSlice) String() string { return strings.Join(*s, ",") } func (s *StringSlice) Set(value string) error { *s = append(*s, value) return nil }