Skip to content

Instantly share code, notes, and snippets.

@leandrocp
Last active March 29, 2019 14:18
Show Gist options
  • Save leandrocp/724791575a07eb987bd05ed651d95736 to your computer and use it in GitHub Desktop.
Save leandrocp/724791575a07eb987bd05ed651d95736 to your computer and use it in GitHub Desktop.
art_bc_customer_structs
# apps/sales/lib/domain/customer.ex
defmodule Sales.Domain.Customer do
defstruct [:id, :name, :address, :score, :has_support_ticket]
end
# apps/support/lib/domain/customer.ex
defmodule Support.Domain.Customer do
defstruct [:id, :name, :last_ticket_id, :email]
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment