Skip to content

Latest commit

 

History

History
15 lines (12 loc) · 460 Bytes

File metadata and controls

15 lines (12 loc) · 460 Bytes

Exercise: OTP-Applications-1

Turn your stack server into an OTP application.

Solution

It already is! :)

See the most recent stack implementation. More specifically, in the mix.exs file, see the application function:

def application do
  [applications: [:logger],
   mod: {Stack, []}]
end

This was automatically generated by mix when we created the project.