32 lines
913 B
Go
32 lines
913 B
Go
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
|
|
}
|