There was an error while loading. Please reload this page.
1 parent ec0c3c1 commit f0e417cCopy full SHA for f0e417c
dao/task-dao-postgres.go
@@ -11,12 +11,12 @@ import (
11
// compilation time interface check
12
var _ TaskDAO = (*TaskDAOPostgres)(nil)
13
14
-// TaskDAOPostgres is the mongo implementation of the TaskDAO
+// TaskDAOPostgres is the postgreSQL implementation of the TaskDAO
15
type TaskDAOPostgres struct {
16
db *sql.DB
17
}
18
19
-// NewTaskDAOPostgres creates a new TaskDAO mongo implementation
+// NewTaskDAOPostgres creates a new TaskDAO postgreSQL implementation
20
func NewTaskDAOPostgres(db *sql.DB) TaskDAO {
21
return &TaskDAOPostgres{
22
db: db,
0 commit comments