7 lines
184 B
Go
7 lines
184 B
Go
package repository
|
|
|
|
import "Yimaru-Backend/internal/ports"
|
|
|
|
// Interface for creating new shop transaction store
|
|
func NewTransactionStore(s *Store) ports.TransactionStore { return s }
|