asmodehn / xest

Xest: Elixir client for online crypto exchanges
GNU General Public License v3.0
2 stars 9 forks source link

Code Structure Review #14

Open asmodehn opened 3 years ago

asmodehn commented 3 years ago

Draw inspiration from this talk https://www.youtube.com/watch?v=fhheJ5zsXBQ. from @QuinnWilton (Big thanks for that !) Sample phoenix app here: https://github.com/QuinnWilton/easywire

asmodehn commented 3 years ago

Small feedback of a few months of elixir development so far:

This is where I am now with elixir code structure, and next step is to try replicate some of the technics from easywire in here, since it seems to be a similar kind of software....

asmodehn commented 3 years ago

Small related note: Implementation of behaviours (marked with impl: true) is not accessible by default from iex via tab-completion , as specified in the docs https://hexdocs.pm/iex/IEx.html#module-autocomplete => Is this a sign that behaviours are not meant for this usecase / the design is not good enough ??