feat: add obfstr

This commit is contained in:
2022-07-09 23:19:00 +08:00
parent a8a284163d
commit 6160185ace
4 changed files with 39 additions and 1 deletions

View File

@@ -0,0 +1,9 @@
use obfstr::obfstr;
fn main() {
obfstr!(
let secret = "Secret!!";
);
println!("{}", secret);
}