geo-therminator/lib/geo_therminator/pump_api/auth/user.ex

8 lines
155 B
Elixir
Raw Normal View History

2021-11-07 09:01:39 +00:00
defmodule GeoTherminator.PumpAPI.Auth.User do
2023-01-11 18:37:27 +00:00
require Record
2021-11-07 09:01:39 +00:00
2023-01-11 18:37:27 +00:00
Record.defrecord(:record, :user, [:tokens])
@type t :: :pump_api@auth@user.user()
2021-11-07 09:01:39 +00:00
end