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

17 lines
348 B
Go

package store
func (s *Store) GetContract(id string) (Contract, error) {
return Contract{}, nil
}
func (s *Store) SetContract(id string, contract Contract) error {
return nil
}
func (s *Store) GetCustomer(id string) (Customer, error) {
return Customer{}, nil
}
func (s *Store) SetCustomer(id string, customer Customer) error {
return nil
}