@microsoft.azure/autorest.testserver
Version:
Autorest test server.
11 lines (9 loc) • 315 B
text/typescript
import { app } from "../api";
app.category("vanilla", () => {
app.put("/constants/clientConstants/path", "ConstantClientProperties", (req) => {
if (req.query["query-constant"] !== "100" || req.headers["header-constant"] !== "true") {
return { status: 400 };
}
return { status: 200 };
});
});