fix
This commit is contained in:
31
Backend/internal/logic/Forum/comments.go
Normal file
31
Backend/internal/logic/Forum/comments.go
Normal file
@@ -0,0 +1,31 @@
|
||||
package Forum
|
||||
|
||||
import (
|
||||
v1 "TrangleAgent/api/forum/v1"
|
||||
"context"
|
||||
)
|
||||
|
||||
type sForumComments struct{}
|
||||
|
||||
func NewForumComments() *sForumComments {
|
||||
return &sForumComments{}
|
||||
}
|
||||
|
||||
func (s *sForumComments) Create(ctx context.Context, req *v1.ForumCommentsCreateReq) (res *v1.ForumCommentsCreateRes, err error) {
|
||||
return nil, nil
|
||||
}
|
||||
|
||||
func (s *sForumComments) Update(ctx context.Context, req *v1.ForumCommentsUpdateReq) (res *v1.ForumCommentsUpdateRes, err error) {
|
||||
return nil, nil
|
||||
}
|
||||
|
||||
func (s *sForumComments) Delete(ctx context.Context, req *v1.ForumCommentsDeleteReq) (res *v1.ForumCommentsDeleteRes, err error) {
|
||||
return nil, nil
|
||||
}
|
||||
|
||||
func (s *sForumComments) View(ctx context.Context, req *v1.ForumCommentsViewReq) (res *v1.ForumCommentsViewRes, err error) {
|
||||
return nil, nil
|
||||
}
|
||||
func (s *sForumComments) List(ctx context.Context, req *v1.ForumCommentsListReq) (res *v1.ForumCommentsListRes, err error) {
|
||||
return nil, nil
|
||||
}
|
||||
Reference in New Issue
Block a user