You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12345678
  1. from enum import Enum
  2. class PlanningStrategy(Enum):
  3. ROUTER = 'router'
  4. REACT_ROUTER = 'react_router'
  5. REACT = 'react'
  6. FUNCTION_CALL = 'function_call'