mirror of
https://codeberg.org/JasterV/spazio-solazzo.git
synced 2026-04-27 02:25:40 +00:00
17 lines
537 B
Elixir
17 lines
537 B
Elixir
# Copyright 2026 Victor Martinez Montané
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License"),
|
|
# subject to the Commons Clause License Condition v1.0.
|
|
# You may not use this file except in compliance with the License.
|
|
#
|
|
# See the LICENSE file for details.
|
|
#
|
|
defmodule SpazioSolazzo do
|
|
@moduledoc """
|
|
SpazioSolazzo keeps the contexts that define your domain
|
|
and business logic.
|
|
|
|
Contexts are also responsible for managing your data, regardless
|
|
if it comes from the database, an external API or others.
|
|
"""
|
|
end
|