findControllers method

Future<List<String>> findControllers()

Find all controllers in the project

Implementation

Future<List<String>> findControllers() async {
  return await _findFilesWithAnnotation('@Controller');
}