- Added EveAI Client to project
- Improvements to EntitlementsDomain & Services - Prechecks in Document domain - Add audit information to LicenseUsage
This commit is contained in:
17
eveai_client/platform/views/main_views.py
Normal file
17
eveai_client/platform/views/main_views.py
Normal file
@@ -0,0 +1,17 @@
|
||||
from flask import Blueprint, render_template, current_app
|
||||
from eveai_client.platform.extensions import config_manager
|
||||
|
||||
main_bp = Blueprint('main', __name__)
|
||||
|
||||
|
||||
@main_bp.route('/')
|
||||
def index():
|
||||
"""Main page - shows specialist selection."""
|
||||
specialists = config_manager.get_available_specialists()
|
||||
return render_template('specialist_list.html', specialists=specialists)
|
||||
|
||||
|
||||
@main_bp.route('/test')
|
||||
def test():
|
||||
"""Test route to verify the Flask app is working."""
|
||||
return "EveAI Client is running!"
|
||||
Reference in New Issue
Block a user