From 635535698a5e59c6e7a8d00f74e340d5053f25de Mon Sep 17 00:00:00 2001 From: Jason Stephenson Date: Wed, 25 Jun 2014 11:21:48 -0400 Subject: [PATCH 1/1] Add a stub Evergreen driver. This creates a skeleton lib/NCIP/ILS/Evergreen.pm with just the main subroutines. They currently do nothing at all. Signed-off-by: Jason Stephenson --- lib/NCIP/ILS/Evergreen.pm | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 lib/NCIP/ILS/Evergreen.pm diff --git a/lib/NCIP/ILS/Evergreen.pm b/lib/NCIP/ILS/Evergreen.pm new file mode 100644 index 0000000..4948a20 --- /dev/null +++ b/lib/NCIP/ILS/Evergreen.pm @@ -0,0 +1,36 @@ +# --------------------------------------------------------------- +# Copyright © 2014 Jason Stephenson +# +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# --------------------------------------------------------------- +package NCIP::ILS::Evergreen; + +use Modern::Perl; + +use Object::Tiny qw/name/; + +sub itemdata {} + +sub userdata {} + +sub checkin {} + +sub checkout {} + +sub renew {} + +sub request {} + +sub cancelrequest {} + +sub acceptitem {} + +1; -- 2.43.2