ash/lib
Zach Daniel 87627993b8 improvement: breaking change! don't define code interface by default
In an effort to improve compile times in general, and remove unnecessary
compile time dependencies, the code interface is not defined by default.
It is also now possible to define the code interface directly in the resource module,
via

```elixir
code_interface do
  define_for ApiModule
end
```

If you need to reenable the code interface, simply add the following to your api module:
```elixir
resources do
  define_interfaces? true
  ...
end
```
2021-10-06 17:43:22 -04:00
..
ash improvement: breaking change! don't define code interface by default 2021-10-06 17:43:22 -04:00
mix/tasks chore: Enable Credo's Readability.StrictModuleLayout (#228) 2021-04-18 19:41:49 -04:00
ash.ex
sat_solver.ex feat: expression calculations for sorting/filtering 2021-06-04 01:37:11 -04:00