started implementation of functionallity to delete tweets, implemented better colors println

This commit is contained in:
arnaucode
2017-04-18 00:42:20 +02:00
parent ebbbbc8cdc
commit 19b11221bc
4 changed files with 111 additions and 7 deletions

37
color.go Normal file
View File

@@ -0,0 +1,37 @@
package main
import "fmt"
type Color struct{}
var c Color
func (c Color) Cyan(t string) {
fmt.Print("\x1b[36;1m") //cyan
fmt.Println(t)
fmt.Print("\x1b[0m") //defaultColor
}
func (c Color) Red(t string) {
fmt.Print("\x1b[31;1m") //red
fmt.Println(t)
fmt.Print("\x1b[0m") //defaultColor
}
func (c Color) Green(t string) {
fmt.Print("\x1b[32;1m") //green
fmt.Println(t)
fmt.Print("\x1b[0m") //defaultColor
}
func (c Color) Blue(t string) {
fmt.Print("\x1b[34;1m") //blue
fmt.Println(t)
fmt.Print("\x1b[0m") //defaultColor
}
func (c Color) Purple(t string) {
fmt.Print("\x1b[35;1m") //purple
fmt.Println(t)
fmt.Print("\x1b[0m") //defaultColor
}