mirror of
https://github.com/goauthentik/authentik.git
synced 2026-06-18 03:19:51 +03:00
9469f86f65
Signed-off-by: Jens Langhammer <jens.langhammer@beryju.org>
7 lines
144 B
Python
7 lines
144 B
Python
"""Helper script to generate an NPM Version"""
|
|
from time import time
|
|
|
|
from authentik import __version__
|
|
|
|
print("%s-%d" % (__version__, time()))
|