view PerfsDb/DbSize.py @ 294:192665e6113f

instruction to run on Windows (with WSL)
author Alain Mazy <alain@mazy.be>
date Tue, 12 May 2020 12:43:25 +0200
parents df1f9946571c
children
line wrap: on
line source

from enum import Enum

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