All my ports are inside the application/ports folder. But now i have the port "EnvLoaderPort", with this code: export abstract class EnvLoaderPort { abstract loadEnv(): Promise<void>; }
this port is not used in any use case in the application layer, it is just implemented by the framework layer, and then used in the bootstrap that init the code.
Is it right to put the port in the application folder, even if it is not used by it?