aboutsummaryrefslogtreecommitdiff
path: root/src/inside.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/inside.rs')
-rw-r--r--src/inside.rs10
1 files changed, 0 insertions, 10 deletions
diff --git a/src/inside.rs b/src/inside.rs
deleted file mode 100644
index bbdcfdb..0000000
--- a/src/inside.rs
+++ /dev/null
@@ -1,10 +0,0 @@
-use Customize;
-
-/// Path to `protobuf` crate, different when `.proto` file is
-/// used inside or outside of protobuf crate.
-pub(crate) fn protobuf_crate_path(customize: &Customize) -> &str {
- match customize.inside_protobuf {
- Some(true) => "crate",
- _ => "::protobuf",
- }
-}