From 47ab0080e7574ad8dde22818f1f99ff649a379ed Mon Sep 17 00:00:00 2001 From: Arya Kiran Date: Thu, 19 Jan 2023 10:55:11 +0530 Subject: [PATCH] gofmt --- main.go | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/main.go b/main.go index 3241ac5..cdbe1ff 100644 --- a/main.go +++ b/main.go @@ -7,22 +7,22 @@ import ( "github.com/spf13/viper" "os" "os/exec" + "regexp" "runtime" "strings" - "regexp" ) type Userstruct struct { - Status int `json:"status"` - Online int `json:"online"` - Total int `json:"total"` + Status int `json:"status"` + Online int `json:"online"` + Total int `json:"total"` Users []Userinfo `json:"users"` } type Userinfo struct { Name string `json:"name"` FullName string `json:"fullName"` Desc string `json:"desc"` - Online bool `json:"online"` + Online bool `json:"online"` Email string `json:"email"` Website string `json:"website"` Capsule string `json:"capsule"`