ceresdbproto/
lib.rs

1// Copyright 2022 CeresDB Project Authors. Licensed under Apache-2.0.
2
3//! Protobuf messages
4
5pub use protos::*;
6
7#[allow(dead_code)]
8#[allow(clippy::all)]
9mod protos {
10    include!(concat!(env!("OUT_DIR"), "/mod.rs"));
11}