# I am the Watcher. I am your guide through this vast new twtiverse.
# 
# Usage:
#     https://watcher.sour.is/api/plain/users              View list of users and latest twt date.
#     https://watcher.sour.is/api/plain/twt                View all twts.
#     https://watcher.sour.is/api/plain/mentions?uri=:uri  View all mentions for uri.
#     https://watcher.sour.is/api/plain/conv/:hash         View all twts for a conversation subject.
# 
# Options:
#     uri     Filter to show a specific users twts.
#     offset  Start index for quey.
#     limit   Count of items to return (going back in time).
# 
# twt range = 1 1
# self = https://watcher.sour.is/conv/wq3v67a
#golang
A handy and powerful library to deal with unstructured data

The below piece of code shows an example of usage


type Person struct {<br/>    Firstname string   `structs:"firstname"`<br/>    Age       int      `structs:"age"`<br/>    Siblings  []Person `structs:"siblings,omitempty"`<br/>}


func main(){

k := knoa.Map().Set("firstname", "John", "age", 20)

k.Set("siblings", []Person{

{

Firstname: "Tim",

Age: 29,

},

{

Firstname: "Bob",

Age: 40,

},

})

k.Set("age", 23, "siblings[1].age", 39)

var person Person ... ⌘ Read more=