Files
CertifiedInvSWDB/sw/repo/swRepo.go
T

9 lines
185 B
Go

// Package repo has repositories to access the data
package repo
import models "github.com/ESilva15/PTInvCertSWDB/sw/models"
type SWRepo interface {
Get(id int) (models.SW, error)
}