mirror of
https://github.com/goauthentik/authentik
synced 2026-05-12 18:06:21 +02:00
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()))
|