Bug 17600: Standardize our EXPORT_OK
[srvgit] / Koha / Acquisition / Bookseller / Contact.pm
1 package Koha::Acquisition::Bookseller::Contact;
2
3 use Modern::Perl;
4
5 use base qw( Koha::Object );
6
7
8 sub _type {
9     return 'Aqcontact';
10 }
11
12 1;