mirror of
https://github.com/spiffcode/hostile-takeover.git
synced 2026-02-04 21:48:06 +00:00
9 lines
228 B
Python
9 lines
228 B
Python
import config
|
|
|
|
from google.appengine.ext import webapp
|
|
|
|
class SyncError(webapp.RequestHandler):
|
|
def post(self):
|
|
self.response.headers['Content-Type'] = 'text/plain'
|
|
self.response.out.write('not implemented')
|