Skip to content

Instantly share code, notes, and snippets.

@anatoliyfedorenko
Created July 13, 2020 05:52
Show Gist options
  • Select an option

  • Save anatoliyfedorenko/3bc64fa5ccc51fe66c52bc173f858bcb to your computer and use it in GitHub Desktop.

Select an option

Save anatoliyfedorenko/3bc64fa5ccc51fe66c52bc173f858bcb to your computer and use it in GitHub Desktop.
Interface for Database Communication
// IStorage represents database methods
type IStorage interface {
User() User
Profile() Profile
Agreement() Agreement
AgreementChanges() AgreementChanges
Milestone() Milestone
Contact() Contact
Notification() Notification
Payout() Payout
WebhookEvent() WebhookEvent
Referral() Referral
VerificationCode() VerificationCode
Feedback() Feedback
PlatformTransfer() PlatformTransfer
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment