Files

12 lines
204 B
Go
Raw Permalink Normal View History

2019-04-22 20:46:32 +08:00
package service
import (
"context"
)
// GetPro get project detail
func (s *Service) GetPro(c context.Context, id int, bot bool) (res []byte, err error) {
res, err = s.dao.GetPro(c, id, bot)
return
}