<@UHD1AF77X> Ah I think I see what you’re asking, ...
# general
a
@salmon-lawyer-85465 Ah I think I see what you’re asking, It is possible to use your languages module system to lay out your seperate concerns something like:
Copy code
import * as pulumi from "@pulumi/pulumi";
import { createMyService } from "./myservice";

let myService = createMyService();

export const allServices = {
  myService
};