Albirew/nyaa-pantsu
Archivé
1
0
Bifurcation 0
Ce dépôt a été archivé le 2022-05-07. Vous pouvez voir ses fichiers ou le cloner, mais pas ouvrir de ticket ou de demandes d'ajout, ni soumettre de changements.
nyaa-pantsu/database/postgres/comments.go

22 lignes
519 o
Go
Brut Vue normale Historique

2017-05-15 01:31:17 +02:00
package postgres
import (
"github.com/ewhal/nyaa/common"
"github.com/ewhal/nyaa/model"
)
func (db *Database) InsertComment(comment *model.Comment) (err error) {
_, err = db.getPrepared(queryInsertComment).Exec(comment.ID, comment.TorrentID, comment.Content, comment.CreatedAt)
return
}
func (db *Database) GetCommentsWhere(param *common.CommentParam) (comments []model.Comment, err error) {
return
}
func (db *Database) DeleteCommentsWhere(param *common.CommentParam) (deleted uint32, err error) {
return
}