Grafoscopio/src/Zotero/ZoteroAPI.class.st

18 lines
384 B
Smalltalk

"
I model the information of the Zotero API. I collaborate with other objects to define repetitive API urls.
"
Class {
#name : #ZoteroAPI,
#superclass : #Object,
#category : #Zotero
}
{ #category : #'as yet unclassified' }
ZoteroAPI class >> baseURL [
"I provide the base URL where the API services are provided.
For more information visit:
"
^ 'https://api.zotero.org/'
]