/AnimeNewsGo

news from animenewsnetwork.com

Primary LanguageGoApache License 2.0Apache-2.0

AnimeNewsGo

News from animenewsnetwork.com

Go Reference

How to install

go get github.com/NksamaX/AnimeNewsGo

How to Use

package main

import (
	"github.com/NksamaX/AnimeNewsGo/news"
	"fmt"
)

func main() {
	x := news.Get_News()
	fmt.Println(x["title"])
	fmt.Println(x["news"])
	
}