- 🔥 Fulltime Learner
 - 🦇 Born to Defense
 - ☕ Coffe Everyday
 
package main
type Me struct{
  Pronouns string
  Code string
  Job string
  BestAndFavoriteSkill string
}
func main(){
  me := &Me{
    Job: "Detection Engineering & Threat Hunting",
    Pronouns: "He/Him",
    Code: "Python and Go and Everythings",
    BestAndFavoriteSkill: "Hunting"
  }
  _ = me
}



