auth: start with 'web' sub-package that will provide real login functionality

This commit is contained in:
Helmut Merz 2024-08-20 19:30:11 +02:00
parent 0766bcf418
commit e71544c09f

11
lib/auth/web.lisp Normal file
View file

@ -0,0 +1,11 @@
;;;; cl-scopes/lib/auth/web - authentication web interface
(defpackage :scopes-auth/web
(:use :common-lisp)
(:local-nicknames (:auth :scopes-auth)
(:config :scopes/config))
(:export #:login))
(in-package :scopes-auth/web)