mirror of
https://github.com/huggingface/text-generation-inference.git
synced 2025-04-24 08:22:07 +00:00
8 lines
155 B
Rust
8 lines
155 B
Rust
|
use std::error::Error;
|
||
|
use vergen::EmitBuilder;
|
||
|
|
||
|
fn main() -> Result<(), Box<dyn Error>> {
|
||
|
EmitBuilder::builder().git_sha(false).emit()?;
|
||
|
Ok(())
|
||
|
}
|