main function

void main()

Implementation

void main() {
  const registry = UseCaseRegistryImpl(
    UseCaseMapper({}),
    UseCaseParamsMappers({}),
  );
  registry.callUseCase('1', {}).then(
    (res) => res.fold(
      (left) => null,
      (right) => null,
    ),
  );
}