From d8db5658a4e5de95f18f61512751eaae69807641 Mon Sep 17 00:00:00 2001 From: angelina-tsuboi Date: Fri, 5 May 2023 12:08:28 -0700 Subject: [PATCH] feat: init info panel --- osint/osint.go | 3 ++- txt/info.txt | 10 +++++----- 2 files changed, 7 insertions(+), 6 deletions(-) diff --git a/osint/osint.go b/osint/osint.go index 961705b..f780feb 100644 --- a/osint/osint.go +++ b/osint/osint.go @@ -7,7 +7,8 @@ import ( func Banner() { banner, _ := ioutil.ReadFile("txt/banner.txt") + info, _ := ioutil.ReadFile("txt/info.txt") g,_:=gradient.NewGradient("cyan", "blue") g.Print(string(banner)) - g.Print("Developed by Angelina Tsuboi") + g.Print(string(info)) } \ No newline at end of file diff --git a/txt/info.txt b/txt/info.txt index 8890777..26a7fe8 100644 --- a/txt/info.txt +++ b/txt/info.txt @@ -1,6 +1,6 @@ -╔═══════════════════════════════════════════════════╗ -║ ║ -║ Created by Angelina Tsuboi (G4LXY) ║ -║ ║ -╚═══════════════════════════════════════════════════╝ \ No newline at end of file + ╔═════════════════════════════════════════════════════════════╗ + ║ Created by Angelina Tsuboi (G4LXY) ║ + ║ github.com/ANG13T/SatIntel ║ + ║ angelinatsuboi.net ║ + ╚═════════════════════════════════════════════════════════════╝ \ No newline at end of file