use std::io::{stdin,stdout,Write};
pub struct CreateCertificate;
impl CreateCertificate {
pub fn new(){
print!("\x1B[2J");
println!("Selenite Key Generation (v0.1.0):")
println!("by @AtropineTears | SilentNightshade")
println!();
println!("Do you want to Generate a SimpleCertificate for Code-Signing [y/n]: ")
let input = io::stdin()
.read_line(&mut number)
.expect("Failed to read input");
if input == "Y" || input = "y" || input = "yes" || input = "Yes" || input = "YES" || input = "YeS" {
}
else if input == "N" || input == "n" || input == "no" || input == "No" || input == "NO" {
}
else {
}
}
}