Create voter

This commit is contained in:
Jose De Freitas 2021-02-27 20:20:58 -05:00
parent ab38da9847
commit 0db555496e

12
voter/voter.py Normal file
View File

@ -0,0 +1,12 @@
from flask import Flask
app = Flask(__name__)
@app.route("/")
def main():
return "Working"
if __name__ == "__main__":
app.run(debug=True)