mirror of
https://github.com/fergalmoran/Chrome2Kindle.git
synced 2025-12-22 09:38:38 +00:00
14 lines
294 B
Python
14 lines
294 B
Python
from oauth import oauth
|
|
from google.appengine.ext import webapp
|
|
import logging
|
|
|
|
class OAuthHandler(webapp.RequestHandler):
|
|
def request(self):
|
|
logging.debug("request")
|
|
|
|
def authorise(self):
|
|
logging.debug("request")
|
|
|
|
def access(self):
|
|
logging.debug("request")
|