Add types and specs for LastFm module

This commit is contained in:
Claudio Ortolina
2024-11-11 20:51:00 +00:00
parent 8e1916c22a
commit c7b9aadb70
6 changed files with 38 additions and 1 deletions
+5
View File
@@ -1,3 +1,8 @@
defmodule LastFm.Artist do
defstruct [:musicbrainz_id, :name]
@type t :: %__MODULE__{
musicbrainz_id: String.t(),
name: String.t()
}
end