Last active
August 29, 2015 14:26
-
-
Save broady/d8886a63f1ee51633458 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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