xref: /tonic/tests/extern_path/uuid/src/lib.rs (revision da92dbf8)
1 include!(concat!(env!("OUT_DIR"), "/uuid.rs"));
2 
3 pub trait DoSomething {
4     fn do_it(&self) -> String;
5 }
6 
7 impl DoSomething for Uuid {
8     fn do_it(&self) -> String {
9         "Done".to_string()
10     }
11 }
12