You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

10 lines
185 B

  1. package vote
  2. import (
  3. "context"
  4. v1 "practice_ArticleVote_Go/api/vote/v1"
  5. )
  6. type IVoteV1 interface {
  7. GetAllVote(ctx context.Context, req *v1.VoteReq) (res *v1.VoteRes, err error)
  8. }