File tree Expand file tree Collapse file tree 3 files changed +13
-8
lines changed
src/meta/app/src/principal Expand file tree Collapse file tree 3 files changed +13
-8
lines changed Original file line number Diff line number Diff line change 15
15
//! Principal is a user or role that accesses an entity.
16
16
17
17
mod connection;
18
- pub mod connection_ident;
19
18
mod file_format;
20
19
mod network_policy;
21
- pub mod network_policy_ident;
22
20
mod ownership_info;
23
21
mod password_policy;
24
- pub mod password_policy_ident;
25
22
mod principal_identity;
26
23
mod role_ident;
27
24
mod role_info;
28
25
mod user_auth;
29
26
mod user_defined_file_format;
30
- pub mod user_defined_file_format_ident;
31
27
mod user_defined_function;
32
28
mod user_grant;
33
29
mod user_identity;
34
30
mod user_info;
35
31
mod user_privilege;
36
32
mod user_quota;
37
33
mod user_setting;
38
- mod user_setting_ident;
39
34
mod user_stage;
40
35
mod user_stage_file_ident;
41
- mod user_stage_ident;
36
+
37
+ pub mod connection_ident;
38
+ pub mod network_policy_ident;
39
+ pub mod password_policy_ident;
40
+ pub mod user_defined_file_format_ident;
41
+ pub mod user_setting_ident;
42
+ pub mod user_stage_ident;
42
43
43
44
pub use connection:: * ;
44
45
pub use file_format:: * ;
Original file line number Diff line number Diff line change 15
15
use crate :: tenant_key:: TIdent ;
16
16
17
17
/// Define the meta-service key for a user setting.
18
- pub type SettingIdent = TIdent < kvapi_impl:: Resource > ;
18
+ pub type SettingIdent = TIdent < Resource > ;
19
+
20
+ pub use kvapi_impl:: Resource ;
19
21
20
22
mod kvapi_impl {
21
23
Original file line number Diff line number Diff line change 15
15
use crate :: tenant_key:: TIdent ;
16
16
17
17
/// Define the meta-service key for a stage.
18
- pub type StageIdent = TIdent < kvapi_impl:: Resource > ;
18
+ pub type StageIdent = TIdent < Resource > ;
19
+
20
+ pub use kvapi_impl:: Resource ;
19
21
20
22
mod kvapi_impl {
21
23
You can’t perform that action at this time.
0 commit comments