Current section

Files

Jump to
surgex lib surgex parser structs geolocation.ex
Raw

lib/surgex/parser/structs/geolocation.ex

defmodule Surgex.Parser.Geolocation do
@moduledoc """
Holds a specific point on Earth's surface.
"""
@type t :: %__MODULE__{latitude: number, longitude: number}
defstruct [:latitude, :longitude]
end