Commit a1ee9127 authored by Eric Timmons's avatar Eric Timmons
Browse files

Forgot to add a file

parent 17a243c8
Loading
Loading
Loading
Loading

src/repos/defs.lisp

0 → 100644
+15 −0
Original line number Diff line number Diff line
;;;; Repository definitions
;;;;
;;;; This software is part of CLPI. See README.org for more information. See
;;;; LICENSE for license information.

(uiop:define-package #:clpi/repos/defs
    (:use #:cl)
  (:export #:repo-to-description))

(in-package #:clpi/repos/defs)

(defgeneric repo-to-description (repo)
  (:documentation
   "Return a description of REPO suitable for reconstructing it with
MAKE-REPO-FROM-DESCRIPTION."))