diff options
| author | Bret Koppel <bret@olo.com> | 2025-10-07 09:00:37 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-10-07 09:00:37 -0400 |
| commit | 910d7fd656b9e957181732b36761449de5a970d1 (patch) | |
| tree | 0f8ee46af3e93aa489785d64d54c5e155ef0057b /lisp/awx | |
| parent | 9adba239b937df2830a5110adaa1dae17b7dd7d7 (diff) | |
| parent | 0ad86ba37be273ee1fe4d9bdd5f7bb15c5701abf (diff) | |
Merge pull request #1 from ololabs/initial-commit
initial commit
Diffstat (limited to 'lisp/awx')
| -rw-r--r-- | lisp/awx/awx.lisp | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/lisp/awx/awx.lisp b/lisp/awx/awx.lisp new file mode 100644 index 0000000..1cc295b --- /dev/null +++ b/lisp/awx/awx.lisp @@ -0,0 +1,29 @@ +;;; -*- Mode: Lisp; Syntax: ANSI-Common-Lisp; Base: 10 -*- +(declaim (optimize (speed 0) (safety 3) (debug 3))) + +(in-package :snow) + +(defclass awx () + ((username :initarg :username + :initform nil + :accessor username) + (password :initarg :password + :initform nil + :accessor password) + (client-id :initarg :client-id + :initform nil + :accessor client-id) + (secret-key :initarg :secret-key + :initform nil + :accessor secret-key) + (baseurl :initarg :baseurl + :initform nil + :accessor baseurl) + (token :initarg :token + :initform nil + :accessor token) + (scope :initarg :scope + :initform "read" + :accessor scope)) + (:documentation "")) + |
