Skip to content

Latest commit

 

History

History
11 lines (7 loc) · 261 Bytes

layout.md

File metadata and controls

11 lines (7 loc) · 261 Bytes

Project layout

Go project layout

  • cmd: apps/executables.
  • pkg: public packages.
  • internal: internal packages. The compiler enforces that they can't be included by other modules.

Cairo VM - Go layout

To be completed when packages are added.