24 lines
321 B
Python
24 lines
321 B
Python
from flask import Flask
|
|
app = Flask(__name__)
|
|
|
|
@app.route('/')
|
|
def index():
|
|
return 'Index Page'
|
|
|
|
@app.route('/projects')
|
|
def projects():
|
|
return 'My Projects'
|
|
|
|
@app.route('/monitoring')
|
|
def monitoring():
|
|
return 'link to monitoring'
|
|
|
|
|
|
@app.route('/disclaimer')
|
|
def disclaimer():
|
|
return 'disclaimer'
|
|
|
|
|
|
|
|
|