1Mojo Embedder API 2================= 3 4The Mojo Embedder API is an unstable, internal API to the Mojo system 5implementation. It should be used by code running on top of the system-level 6APIs to set up the Mojo environment (instead of directly instantiating things 7from src/mojo/system). 8 9Example uses: Mojo shell, to set up the Mojo environment for Mojo apps; Chromium 10code, to set up the Mojo IPC system for use between processes. Note that most 11code should use the Mojo Public API (under src/mojo/public) instead. The 12Embedder API should only be used to initialize the environment, set up the 13initial MessagePipe between two processes, etc. 14