mirror of
https://github.com/spl0k/supysonic.git
synced 2024-11-10 04:02:17 +00:00
14 lines
307 B
Python
14 lines
307 B
Python
# coding: utf-8
|
|
|
|
from flask import request
|
|
from web import app
|
|
|
|
@app.route('/rest/ping.view', methods = [ 'GET', 'POST' ])
|
|
def ping():
|
|
return request.formatter({})
|
|
|
|
@app.route('/rest/getLicense.view', methods = [ 'GET', 'POST' ])
|
|
def license():
|
|
return request.formatter({ 'license': { 'valid': True } })
|
|
|