This commit is contained in:
Andy Leong
2024-01-14 19:23:37 +08:00
parent f2bb4f9efc
commit 96ad18a766
2 changed files with 0 additions and 1 deletions

9
src/api/index.js Normal file
View File

@@ -0,0 +1,9 @@
import http from './http'
export function addSurveyed(data, authorization) {
return http.post("/api/user/addSurveyed",
data,
true,
authorization
);
}