This commit is contained in:
parent
fab8063bb9
commit
e4af01e789
5 changed files with 4 additions and 4 deletions
|
@ -1,8 +1,8 @@
|
||||||
from glob import glob
|
from glob import glob
|
||||||
from os import mkdir, urandom
|
from os import mkdir, urandom
|
||||||
|
|
||||||
from config import Config
|
|
||||||
from flask import Flask
|
from flask import Flask
|
||||||
|
from utils.config import Config
|
||||||
|
|
||||||
app = Flask(__name__, static_url_path="/")
|
app = Flask(__name__, static_url_path="/")
|
||||||
|
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
from config import Config
|
|
||||||
from flask import Blueprint, flash, redirect, render_template, request
|
from flask import Blueprint, flash, redirect, render_template, request
|
||||||
|
from utils.config import Config
|
||||||
from utils.misc import create_post, fresh_file_id, get_posts
|
from utils.misc import create_post, fresh_file_id, get_posts
|
||||||
from werkzeug import Response
|
from werkzeug import Response
|
||||||
|
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
from config import Config
|
|
||||||
from flask import Blueprint, flash, redirect, render_template, request
|
from flask import Blueprint, flash, redirect, render_template, request
|
||||||
|
from utils.config import Config
|
||||||
from werkzeug import Response
|
from werkzeug import Response
|
||||||
|
|
||||||
name = __name__.split(".")[-1]
|
name = __name__.split(".")[-1]
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
from config import Config
|
|
||||||
from flask import Blueprint, flash, redirect, render_template
|
from flask import Blueprint, flash, redirect, render_template
|
||||||
|
from utils.config import Config
|
||||||
from utils.misc import delete_post, get_post, post_file_id, post_filename
|
from utils.misc import delete_post, get_post, post_file_id, post_filename
|
||||||
from werkzeug import Response
|
from werkzeug import Response
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue