Rename git_config_entry module to remote (#1337)

The `GitConfigEntry` enum has been removed from the module and now only
contains the `GitRemoteRepo` type.
This commit is contained in:
nickelc 2023-03-09 12:03:51 +01:00 committed by GitHub
parent 6a37445efb
commit cf683c8c6d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -1,6 +1,6 @@
mod git_config_entry;
mod remote;
pub use git_config_entry::GitRemoteRepo;
pub use remote::GitRemoteRepo;
use crate::env::DeltaEnv;
use regex::Regex;