Current section

Files

Jump to
ex_teal lib ex_teal asset script.ex
Raw

lib/ex_teal/asset/script.ex

defmodule ExTeal.Asset.Script do
@moduledoc """
Struct used to represent a JS Script
that is served by Teal and required by a plugin
on the front end side.
"""
defstruct [:plugin_uri, :path]
@type t :: %__MODULE__{}
end