Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 457 Bytes

File metadata and controls

31 lines (22 loc) · 457 Bytes

Ecust Library Scraper

A scraper for Ecust Library in Golang.

Installation

go get github.com/lovecust/EcustLibraryScraper

Examples

package main

import (
	"github.com/lovecust/EcustLibraryScraper/status"
	"log"
)

func main() {
	status, err := LibraryStatus.GetStatus()
	if err != nil {
		log.Fatal("Failed to get library status.", err)
	}
	log.Println(status.ToJson())
}