Skip to content

Instantly share code, notes, and snippets.

@broady
Last active August 29, 2015 14:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save broady/d8886a63f1ee51633458 to your computer and use it in GitHub Desktop.
Save broady/d8886a63f1ee51633458 to your computer and use it in GitHub Desktop.
type Watcher struct {
Suffix string
ETag string
}
func NewWatcher(string s) *Watcher {
return &Watcher{s, ""}
}
func (w *Watcher) WaitForChange(ctx context.Context) (string, error) {
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment