view PerfsDb/DbSize.py @ 453:46ae8fb09254 more-tags

test computed tags for tools/find and list-resources
author Alain Mazy <am@osimis.io>
date Mon, 14 Mar 2022 16:44:20 +0100
parents df1f9946571c
children
line wrap: on
line source

from enum import Enum

class DbSize(Enum):
    Small = 1
    Large = 2
    Tiny = 3
    Medium = 4