Added message privacy, currently 4 levels

This commit is contained in:
Yusur 2019-10-10 21:14:58 +02:00
parent 09a8575068
commit 7700d4fa04
6 changed files with 651 additions and 9 deletions

View file

@ -11,6 +11,6 @@ parser.add_argument('-p', '--port', type=int, default=5000,
from app import app, create_tables
if __name__ == '__main__':
args = argparse.parse_args()
args = parser.parse_args()
create_tables()
app.run(port=args.port)