Is it possible to use BossDB with Elixir? I believe I've managed to initialize it with the following.
defmodule Database do
db_options = [{:adapter, :mock}]
:boss_db.start(db_options)
:boss_news.start()
end
However how to go about defining a model is escaping me. I've tried defining an Elixir module as well as an Elixir record with no success. This may be outside of the scope of this project but some documentation surrounding this could be helpful if it is possible.
Disclaimer: I'm a bit new to Erlang and Elixir so be gentle if I'm completely off base.
Is it possible to use BossDB with Elixir? I believe I've managed to initialize it with the following.
However how to go about defining a model is escaping me. I've tried defining an Elixir module as well as an Elixir record with no success. This may be outside of the scope of this project but some documentation surrounding this could be helpful if it is possible.