Packages

This library wraps Ecto to provides default functions to access and store data.

Current section

Files

Jump to
lazy_context lib examples users users.ex
Raw

lib/examples/users/users.ex

defmodule LazyContext.Examples.Users do
@moduledoc """
An example context to demonstrate basic use of the LazyContext library
"""
alias LazyContext.Examples.Users.Schemas.User
use LazyContext,
schema: User,
suffix: :user
end