Skip to content

Latest commit

 

History

History
26 lines (21 loc) · 872 Bytes

README.md

File metadata and controls

26 lines (21 loc) · 872 Bytes

tlp

Build Status codecov Go Report Card godoc

Intro

tlp is the tl.net starcraft2 event parser extracted from Astral

Usage

    //assume that you already had the tl response
    p := NewTimelineParser(resp)
    if err:= p.Parse();err != nil {
        // handle error
    }
    // get json info
    jsonOut,err:= p.FmtJSON()
    if err!=nil {
        // handle error
    }