Skip to content

Instantly share code, notes, and snippets.

@bhargavg
Created March 3, 2016 16:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bhargavg/69cefab5862edc1bb087 to your computer and use it in GitHub Desktop.
Save bhargavg/69cefab5862edc1bb087 to your computer and use it in GitHub Desktop.
layout-1
├── Package.swift
└── Sources
└── ModuleA
├── Bar.swift
├── Foo.swift
└── Tests
└── ModuleATests.swift
layout-2
├── Foo.swift
├── Package.swift
└── Tests
└── FooTests.swift
layout-3
├── Package.swift
├── Sources
│   ├── Foo.swift
│   └── ModuleA
│   ├── Bar.swift
│   └── Tests
│   └── BarTests.swift
└── Tests
└── FooTests.swift
layout-4
├── Package.swift
├── Sources
│   ├── Foo.swift
│   ├── ModuleA
│   │   └── Bar.swift
│   └── Tests
│   └── FooTests.swift
└── Tests
└── ModuleA
└── BarTests.swift
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment