blob: 412c2d23be30a05eebaa7fed1fef314e79443c69 (
plain)
1
2
3
4
5
6
7
8
9
|
// SPDX-FileCopyrightText: edef <edef@unfathomable.blue>
// SPDX-License-Identifier: OSL-3.0
use std::io::Result;
fn main() -> Result<()> {
prost_build::compile_protos(&["src/store.proto"], &["src/"])?;
Ok(())
}
|