This repository has been archived by the owner on Jun 28, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Splits off part of `package.dhall` into `domain.dhall`, as in general most users will prefer to import everything in `domain.dhall` (but not `package.dhall`) and importing `domain.dhall` instead of importing `Resource`, `Job`, `Pipeline`, etc. separately will reduce boilerplate.
- Loading branch information
1 parent
1f01fe4
commit 68552b1
Showing
3 changed files
with
46 additions
and
34 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
{ Resource = | ||
./Resource.dhall sha256:206f784b14f3fb78809bafffbde955fbc177ca0427c8fe9cf4a983a8aaf463c1 | ||
? ./Resource.dhall | ||
, ResourceType = | ||
./ResourceType.dhall sha256:41ead24540852689f7d08893e4f354358a26696b1d96762e5b188615a031cc06 | ||
? ./ResourceType.dhall | ||
, Step = | ||
./Step.dhall sha256:496795f751710c5feb68f8e70f685a095e81d826d9e376359609103b966266de | ||
? ./Step.dhall | ||
, Task = | ||
./Task.dhall sha256:8b7677ec0ce7822074fc4e86ad3d2080379c59305d8be4971bec532468a680e6 | ||
? ./Task.dhall | ||
, Job = | ||
./Job.dhall sha256:84f8d5a8a81dae106a85655bd94a4469290222587ca07913907b39a7ebda5f6f | ||
? ./Job.dhall | ||
, Group = | ||
./Group.dhall sha256:9531fd9c8bfbd69c94798d00093481d5266384bd6eed2dc3d76713d7e7a56c41 | ||
? ./Group.dhall | ||
, Pipeline = | ||
./Pipeline.dhall sha256:deb570e2d436b729ecfdf5f2a3fb96baa84321ce9950da95d4f412085cedca78 | ||
? ./Pipeline.dhall | ||
, VarSource = | ||
./VarSource.dhall sha256:d40e04bc69b0ccb965bfeb14cd7c7f33b3c99636f4a75771115030d27775a655 | ||
? ./VarSource.dhall | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,28 +1,5 @@ | ||
{ resource-types = | ||
./resource-types/package.dhall sha256:94ec73f7b06436fa1c38b53905e059fab56546fdd51679eef802a62a5446991e | ||
? ./resource-types/package.dhall | ||
, Resource = | ||
./Resource.dhall sha256:206f784b14f3fb78809bafffbde955fbc177ca0427c8fe9cf4a983a8aaf463c1 | ||
? ./Resource.dhall | ||
, ResourceType = | ||
./ResourceType.dhall sha256:41ead24540852689f7d08893e4f354358a26696b1d96762e5b188615a031cc06 | ||
? ./ResourceType.dhall | ||
, Step = | ||
./Step.dhall sha256:496795f751710c5feb68f8e70f685a095e81d826d9e376359609103b966266de | ||
? ./Step.dhall | ||
, Task = | ||
./Task.dhall sha256:8b7677ec0ce7822074fc4e86ad3d2080379c59305d8be4971bec532468a680e6 | ||
? ./Task.dhall | ||
, Job = | ||
./Job.dhall sha256:84f8d5a8a81dae106a85655bd94a4469290222587ca07913907b39a7ebda5f6f | ||
? ./Job.dhall | ||
, Group = | ||
./Group.dhall sha256:9531fd9c8bfbd69c94798d00093481d5266384bd6eed2dc3d76713d7e7a56c41 | ||
? ./Group.dhall | ||
, Pipeline = | ||
./Pipeline.dhall sha256:deb570e2d436b729ecfdf5f2a3fb96baa84321ce9950da95d4f412085cedca78 | ||
? ./Pipeline.dhall | ||
, VarSource = | ||
./VarSource.dhall sha256:d40e04bc69b0ccb965bfeb14cd7c7f33b3c99636f4a75771115030d27775a655 | ||
? ./VarSource.dhall | ||
} | ||
{ resource-types = | ||
./resource-types/package.dhall sha256:94ec73f7b06436fa1c38b53905e059fab56546fdd51679eef802a62a5446991e | ||
? ./resource-types/package.dhall | ||
} | ||
∧ ./domain.dhall |