Files

10 lines
198 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)
Count() int
}