Paweł Łaba
commited on
Commit
·
dd9b72e
1
Parent(s):
be890f4
zmiany w index
Browse files- app.py +1 -1
- {static → public}/index.html +0 -0
- {static → public}/script.js +0 -0
- {static → public}/style.css +0 -0
app.py
CHANGED
@@ -6,7 +6,7 @@ from tensorflow import keras
|
|
6 |
import json
|
7 |
import os
|
8 |
|
9 |
-
app = Flask(__name__)
|
10 |
CORS(app)
|
11 |
|
12 |
class TicTacToeAI:
|
|
|
6 |
import json
|
7 |
import os
|
8 |
|
9 |
+
app = Flask(__name__, static_folder="public")
|
10 |
CORS(app)
|
11 |
|
12 |
class TicTacToeAI:
|
{static → public}/index.html
RENAMED
File without changes
|
{static → public}/script.js
RENAMED
File without changes
|
{static → public}/style.css
RENAMED
File without changes
|