From ef6f6580df6e8fbce913eecc1fe7e0f8caf1315b Mon Sep 17 00:00:00 2001 From: rejbasket <39080670+rejbasket@users.noreply.github.com> Date: Mon, 22 May 2023 22:33:19 +0200 Subject: Update electron version to v14.2.9 (#2214) Authored-by: rejbasket Co-authored-by: Kaalleen Co-authored-by: Lex Neva --- lib/api/lang.py | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 lib/api/lang.py (limited to 'lib/api/lang.py') diff --git a/lib/api/lang.py b/lib/api/lang.py new file mode 100644 index 00000000..73c190f4 --- /dev/null +++ b/lib/api/lang.py @@ -0,0 +1,11 @@ +import os + +from flask import Blueprint, jsonify + +languages = Blueprint('languages', __name__) + + +@languages.route('') +def get_lang(): + languages = dict(os.environ) + return jsonify(languages) -- cgit v1.2.3