Packages

This package implements the full CloudAPI for managing Joyent Triton clusters

Current section

Files

Jump to
cloudapi lib config.ex
Raw

lib/config.ex

defmodule CloudAPI.Config do
@moduledoc """
This structure represents a CloudAPI Config
"""
use Ecto.Schema
import Ecto.Changeset
@primary_key false
embedded_schema do
field :default_network, :string
end
end