Skip to content

Commit

Permalink
feat(services/tikv): fix code
Browse files Browse the repository at this point in the history
Signed-off-by: owl <[email protected]>
  • Loading branch information
oowl committed Jul 13, 2023
1 parent 35dfd0b commit 1a51fff
Show file tree
Hide file tree
Showing 7 changed files with 421 additions and 190 deletions.
222 changes: 221 additions & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@ default = [
"services-s3",
"services-webdav",
"services-webhdfs",
"services-tikv",
]

# Build docs or not.
Expand Down
5 changes: 4 additions & 1 deletion core/src/services/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -183,5 +183,8 @@ pub use vercel_artifacts::VercelArtifacts;
mod redb;
#[cfg(feature = "services-redb")]
pub use self::redb::Redb;

#[cfg(feature = "services-tikv")]
mod tikv;
#[cfg(feature = "services-tikv")]
pub mod tikv;
pub use self::tikv::TiKV;
Loading

0 comments on commit 1a51fff

Please sign in to comment.