# 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 7
# self = https://watcher.sour.is/conv/h3btguq
@prologic I will try to be there in 4 hours for the meeting, If I can't (because I am still not sleeping), here is the status of yarnc.
I did the follow command, it works BUT i'd like to refactor to hide the pipes behind interfaces (when possible).
For now I :
- follow in conf file (according to twtxt.txt config specification)
- follow in twtxt.txt local file (according to metadata specification)
- send a follow request to yarn server.

BUT maybe I should change the approach for something more like :

SendFollowRequestYarnServer(nick, url)
if err {
  // aka not using yarn or connection issue
AddToLocalConf(nick, url)
AddToTwxtFile(nick, url)
} else {
  SyncServerAndFile() // sync metadata + twts
}

Syncing about it .... I mean Thinking about it :D
What do you think ?
For now I :
- follow in conf file (according to twtxt.txt config specification)
- follow in twtxt.txt local file (according to metadata specification)
- send a follow request to yarn server.

BUT maybe I should change the approach for something more like :

SendFollowRequestYarnServer(nick, url)
if err {
  // aka not using yarn or connection issue
  AddToLocalConf(nick, url)
  AddToTwxtFile(nick, url)
} else {
  SyncServerAndFile() // sync metadata + twts
}

Syncing about it .... I mean Thinking about it :D
What do you think @prologic ?
I 'm taking my time to do it carefully, because once done it will be the philosophy for all the others command.
I will still need to do after that (to have a fully working MVP) :
- unfollow (easy after follow)
- post
- timeline
@tkanos Makes sense 👌
@tkanos Makes sense 👌