100-go-mistakes/02-code-project-organization/8-any/store/before.go
Teiva Harsanyi 50ef0d6b49
Test
2022-07-28 10:27:52 +02:00

19 lines
246 B
Go

package store
type Customer struct {
// Some fields
}
type Contract struct {
// Some fields
}
type Store struct{}
func (s *Store) Get(id string) (any, error) {
return nil, nil
}
func (s *Store) Set(id string, v any) error {
return nil
}