mirror of
https://github.com/balzack/databag.git
synced 2025-02-12 19:49:16 +00:00
14 lines
204 B
Go
14 lines
204 B
Go
package databag
|
|
|
|
import (
|
|
"net/http"
|
|
)
|
|
|
|
func ImportAccount(w http.ResponseWriter, r *http.Request) {
|
|
w.Header().Set("Content-Type", "application/json; charset=UTF-8")
|
|
w.WriteHeader(http.StatusOK)
|
|
}
|
|
|
|
|
|
|