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

25 lignes
667 o
Go
Brut Vue normale Historique

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