diff options
author | zaverden <zaverden@yandex-team.com> | 2024-02-08 07:21:59 +0300 |
---|---|---|
committer | Alexander Smirnov <alex@ydb.tech> | 2024-02-09 19:18:48 +0300 |
commit | cddbfcc9622e34652d736b18ff4ddc37e900ed61 (patch) | |
tree | 50fb987cad27f90315162cb0d562c9e5c83fa335 /build/plugins/lib/nots/semver/__init__.py | |
parent | dd72a9a4ac2bed957bbdba2b1daf415a6aeffdb8 (diff) | |
download | ydb-cddbfcc9622e34652d736b18ff4ddc37e900ed61.tar.gz |
feat(conf): move nots from internal
Diffstat (limited to 'build/plugins/lib/nots/semver/__init__.py')
-rw-r--r-- | build/plugins/lib/nots/semver/__init__.py | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/build/plugins/lib/nots/semver/__init__.py b/build/plugins/lib/nots/semver/__init__.py new file mode 100644 index 0000000000..be4319f9f3 --- /dev/null +++ b/build/plugins/lib/nots/semver/__init__.py @@ -0,0 +1,7 @@ +from .semver import Version, Operator, VersionRange + +__all__ = [ + "Version", + "Operator", + "VersionRange", +] |