Skip to content
Snippets Groups Projects
Commit 9b3f4753 authored by thijsheijden's avatar thijsheijden
Browse files

Added simple consume usecase mock

parent bfff9fde
No related branches found
No related tags found
No related merge requests found
package mockconsume
// A Service implements the consume usecase interface (mock)
type Service struct {
throwError bool
}
// NewService creates a new consume service (mock)
func NewService() *Service {
return &Service{
throwError: false,
}
}
// Start starts the consume service (mock)
func (s *Service) Start() {
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment