mirror of
https://github.com/NginxProxyManager/nginx-proxy-manager.git
synced 2025-11-04 17:35:15 +00:00
- Add help docs for most sections - Add translations documentation - Fix up todos - Remove german translation
10 lines
222 B
TypeScript
10 lines
222 B
TypeScript
import * as api from "./base";
|
|
import type { DeadHost } from "./models";
|
|
|
|
export async function createDeadHost(item: DeadHost): Promise<DeadHost> {
|
|
return await api.post({
|
|
url: "/nginx/dead-hosts",
|
|
data: item,
|
|
});
|
|
}
|