diff options
Diffstat (limited to 'lisp/awx/awx.lisp')
| -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 "")) + |
