Skip to content

Instantly share code, notes, and snippets.

@bykof
Created February 18, 2020 09:44
Show Gist options
  • Save bykof/13b9e93bc0906a76cc21e67caba9c05d to your computer and use it in GitHub Desktop.
Save bykof/13b9e93bc0906a76cc21e67caba9c05d to your computer and use it in GitHub Desktop.
package service
import (
"dashboard/order/domain/entity"
)
type IOrderService interface {
GetOrder(id string) (entity.Order, error)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment