API Rest in Elixir with Guardian without Phoenix it's possible?

I’m making a simple API Rest in Elixir and i’m using Guardian for authentication. In all examples i’m seeing that’s it’s used Phoenix for publish and controller the endpoints, without Phoenix it’s possible?

Guardian depends on Plug, so anything that supports that interface could work - for instance, plug_cowboy.

1 Like

Thanks!