So I've created what I believe to be a small Hello World type Endpoint, but I'm unsure how to call or view it on the server.
I added the following code to \src\calibre\library\server\browse.py
# Read Online {{{
@Endpoint()
def browse_read_online(self, id_):
book = 'The Book You Selected Is: ' + id_
return book
# }}}
|