8 lines
370 B
Go
8 lines
370 B
Go
// Package repositories holds every SQL statement the service runs. A
|
|
// repository is a struct carrying the *sql.DB opened by db.CreateDBConnection
|
|
// and is assigned to a package-level var in main, the way cms wires VideoRepo
|
|
// and CatagoriesRepo, so handlers call through something substitutable.
|
|
//
|
|
// Empty until discovery has tables to read.
|
|
package repositories
|