orthecreedence / wookie

Asynchronous HTTP server in common lisp
http://wookie.lyonbros.com/
MIT License
189 stars 19 forks source link

System "plugin" not found #90

Closed C-Entropy closed 1 year ago

C-Entropy commented 3 years ago

I just reinstall my sbcl, asdf, and quicklisp and do the followings:

(ql:quickload :wookie)

(defpackage :my-website
  (:use :cl :wookie :wookie-plugin-export))

(in-package :my-website)

;; load Wookie's core plugins. much of Wookie's functionality is written as
;; plugins which can be enabled/disabled/overwritten it desired.
(load-plugins)

and then a error occur when (load-plugins): System "plugin" not found I have also tried the code from github, and error remain.

akanouras commented 1 year ago

This is fixed by #93 .

C-Entropy commented 1 year ago

Looks fixed to me, great thanks!