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