SeikoDes
01/31/2024, 4:01 AMserializer()
in kotlinx.serialisation
, like this:
@GenerateApi
interface TestApiService
// use
TestApiService.create(client)
I want generate the create(client)
function for TestApiService
automatically via kcp
, so far I have used `SyntheticResolveExtension`/`FirDeclarationGenerationExtension`/`IrGenerationExtension` to make it compile and run normally, but the IDE
don't know and prompt the create(client)
function, Can this prompt be achieved by kcp
and if so, which extension
should it be based on?SeikoDes
01/31/2024, 4:03 AMTóth István Zoltán
01/31/2024, 8:55 AMcreate
function should show up. Assuming you added it properly.