12 lines
282 B
Go
12 lines
282 B
Go
package branch
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/SamuelTariku/FortuneBet-Backend/internal/domain"
|
|
)
|
|
|
|
func (s *Service) GetAllBranchLocations(ctx context.Context, query domain.ValidString) ([]domain.BranchLocation, error) {
|
|
return s.branchStore.GetAllBranchLocations(ctx, query)
|
|
}
|