GoPrettyTable that simple golang library for pretty data visualizing like Python library "prettytable"
import "github.com/KYCb2/GoPrettyTable"
type Table struct {
Fields [][]string // Fields of table
Delimeter rune // Column and Row Delimeter symbol of table
}func NewTable(del rune) (t *Table)
// Returns New Table Objectfunc (t *Table) AddField(el []string)
// Add Field to Tablefunc (t *Table) Print()
// Print Pretty Table From Your Data