From e8b92e5d6cadd6348d41af10214ee78646df77a6 Mon Sep 17 00:00:00 2001 From: Connor Sullivan Date: Sat, 9 Sep 2023 20:12:25 -0400 Subject: [PATCH] =?UTF-8?q?=F0=9F=9A=9A=20Create=20resource-centric=20dire?= =?UTF-8?q?ctories?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Creates resource-centric directories as an attempt to provide an example of domain ownership. For example, one team could be focused on Films, while another on Starships. --- src/{ => films}/films.tsp | 0 src/main.tsp | 6 +++--- src/{ => people}/people.tsp | 0 src/{ => starships}/starships.tsp | 0 4 files changed, 3 insertions(+), 3 deletions(-) rename src/{ => films}/films.tsp (100%) rename src/{ => people}/people.tsp (100%) rename src/{ => starships}/starships.tsp (100%) diff --git a/src/films.tsp b/src/films/films.tsp similarity index 100% rename from src/films.tsp rename to src/films/films.tsp diff --git a/src/main.tsp b/src/main.tsp index b10d5b8..e1c35d1 100644 --- a/src/main.tsp +++ b/src/main.tsp @@ -1,4 +1,4 @@ import "./root.tsp"; -import "./people.tsp"; -import "./films.tsp"; -import "./starships.tsp"; +import "./people/people.tsp"; +import "./films/films.tsp"; +import "./starships/starships.tsp"; diff --git a/src/people.tsp b/src/people/people.tsp similarity index 100% rename from src/people.tsp rename to src/people/people.tsp diff --git a/src/starships.tsp b/src/starships/starships.tsp similarity index 100% rename from src/starships.tsp rename to src/starships/starships.tsp