18 lines
351 B
Elixir
18 lines
351 B
Elixir
|
defmodule Ketbin.Schema do
|
||
|
@moduledoc """
|
||
|
Ketbin keeps the contexts that define your schemas
|
||
|
"""
|
||
|
end
|
||
|
|
||
|
|
||
|
defmodule Ketbin.Crud do
|
||
|
@moduledoc """
|
||
|
Ketbin keeps the contexts that define your CRUD functions
|
||
|
"""
|
||
|
end
|
||
|
|
||
|
defmodule Ketbin.Api do
|
||
|
@moduledoc """
|
||
|
Ketbin keeps the contexts that define your business logic.
|
||
|
"""
|
||
|
end
|