From 50273c110856e18e3ba563b0f62b7273a4dc022b Mon Sep 17 00:00:00 2001 From: ckonstanski Date: Tue, 7 Oct 2025 06:53:09 -0600 Subject: initial commit --- lisp/awx/awx.lisp | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 lisp/awx/awx.lisp (limited to 'lisp/awx') 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 "")) + -- cgit v1.3