Current section

Files

Jump to
timber lib timber contexts server_context.ex
Raw

lib/timber/contexts/server_context.ex

defmodule Timber.Contexts.ServerContext do
@moduledoc """
The Server context tracks information about the host your system runs on
"""
@type t :: %__MODULE__{
hostname: String.t
}
defstruct [:hostname]
end