mirror of
https://github.com/balzack/databag.git
synced 2025-02-12 03:29:16 +00:00
16 lines
291 B
Go
16 lines
291 B
Go
package databag
|
|
|
|
import (
|
|
"net/http"
|
|
)
|
|
|
|
func SetProfileRevision(w http.ResponseWriter, r *http.Request) {
|
|
w.Header().Set("Content-Type", "application/json; charset=UTF-8")
|
|
w.WriteHeader(http.StatusOK)
|
|
}
|
|
|
|
func NotifyProfileRevision(token string, revision int64) error {
|
|
return nil
|
|
}
|
|
|