-
Notifications
You must be signed in to change notification settings - Fork 673
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Austin Liu <[email protected]>
- Loading branch information
1 parent
9f56c44
commit 13f6ffe
Showing
4 changed files
with
27 additions
and
27 deletions.
There are no files selected for viewing
File renamed without changes.
File renamed without changes.
This file was deleted.
Oops, something went wrong.
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,27 @@ | ||
pub mod datacatalog { | ||
include!("gen/pb_rust/datacatalog.rs"); | ||
} | ||
pub mod flyteidl { | ||
|
||
pub mod admin { | ||
include!("gen/pb_rust/flyteidl.admin.rs"); | ||
} | ||
pub mod cache { | ||
include!("gen/pb_rust/flyteidl.cacheservice.rs"); | ||
} | ||
pub mod core { | ||
include!("gen/pb_rust/flyteidl.core.rs"); | ||
} | ||
pub mod event { | ||
include!("gen/pb_rust/flyteidl.event.rs"); | ||
} | ||
pub mod plugins { | ||
include!("gen/pb_rust/flyteidl.plugins.rs"); | ||
pub mod kubeflow { | ||
include!("gen/pb_rust/flyteidl.plugins.kubeflow.rs"); | ||
} | ||
} | ||
pub mod service { | ||
include!("gen/pb_rust/flyteidl.service.rs"); | ||
} | ||
} |