-
Notifications
You must be signed in to change notification settings - Fork 5
/
build.rs
20 lines (19 loc) · 1.82 KB
/
build.rs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/*===========================================================================*\
* MIT License Copyright (c) 2022 Kris Nóva <[email protected]> *
* *
* ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ *
* ┃ ███╗ ██╗ ██████╗ ██╗ ██╗ █████╗ ┃ *
* ┃ ████╗ ██║██╔═████╗██║ ██║██╔══██╗ ┃ *
* ┃ ██╔██╗ ██║██║██╔██║██║ ██║███████║ ┃ *
* ┃ ██║╚██╗██║████╔╝██║╚██╗ ██╔╝██╔══██║ ┃ *
* ┃ ██║ ╚████║╚██████╔╝ ╚████╔╝ ██║ ██║ ┃ *
* ┃ ╚═╝ ╚═══╝ ╚═════╝ ╚═══╝ ╚═╝ ╚═╝ ┃ *
* ┗━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┛ *
* *
* This machine kills fascists. *
* *
\*===========================================================================*/
fn main() -> Result<(), Box<dyn std::error::Error>> {
tonic_build::compile_protos("proto/echo.proto")?;
Ok(())
}