nulla/lib/nulla_web/controllers/auth_controller.ex
2025-06-17 12:06:36 +02:00

12 lines
142 B
Elixir

defmodule NullaWeb.AuthController do
use NullaWeb, :controller
def sign_in do
end
def sign_out do
end
def sign_up do
end
end