feature C libcurl

This commit is contained in:
Nishant Kumar
2024-03-19 15:24:49 +05:30
parent 9b4076363d
commit 7ab3f90093
4 changed files with 1211 additions and 1 deletions

View File

@ -1,3 +1,4 @@
import 'package:apidash/codegen/C/curl.dart';
import 'package:apidash/models/models.dart' show RequestModel;
import 'package:apidash/consts.dart';
import 'package:apidash/utils/utils.dart' show getNewUuid;
@ -79,6 +80,8 @@ class Codegen {
return RustUreqCodeGen().getCode(rM, boundary: boundary);
case CodegenLanguage.phpGuzzle:
return PhpGuzzleCodeGen().getCode(rM);
case CodegenLanguage.cCurlCodeGen:
return cCurlCodeGen().getCode(rM);
}
}
}