This repository has been archived on 2024-05-31. You can view files and clone it, but cannot push or open issues or pull requests.
|
"""Helper script to generate an NPM Version"""
|
|
from time import time
|
|
|
|
from authentik import __version__
|
|
|
|
print("%s-%d" % (__version__, time()))
|