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.
| 123456789101112 |
- from flask_restful import Resource
-
- from controllers.web import api
- from services.feature_service import FeatureService
-
-
- class SystemFeatureApi(Resource):
- def get(self):
- return FeatureService.get_system_features().model_dump()
-
-
- api.add_resource(SystemFeatureApi, "/system-features")
|