Skip to content

NksamaX/AnimeNewsGo

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

17 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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"])
	
}