From e71544c09f0fee97840439f71a946f217f72bad7 Mon Sep 17 00:00:00 2001 From: Helmut Merz Date: Tue, 20 Aug 2024 19:30:11 +0200 Subject: [PATCH] auth: start with 'web' sub-package that will provide real login functionality --- lib/auth/web.lisp | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 lib/auth/web.lisp diff --git a/lib/auth/web.lisp b/lib/auth/web.lisp new file mode 100644 index 0000000..a3deaf2 --- /dev/null +++ b/lib/auth/web.lisp @@ -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) + +