UNPKG

hetzner-dns

Version:

Client for interacting with the Hetzner DNS API

13 lines (12 loc) 311 B
module.exports = (context) => { return (file) => { return context.Axios.post(`/zones/file/validate`, file, { headers: { 'Content-Type': 'text/plain', 'Content-Length': 0, } }).then(r => { return r.data; }); } }