Add zoneedit as supported provider

Is there any chance of adding ZoneEdit as a supported provider for certificate retrievals?
They have a setup similar to EASYDNS, there's a DYN endpoint and a token available. it can write the TXT to Cname and delete it as well.

alternatively, I would welcome suggestions on how to enable this as an usuported provider.

Thanks in advance.

Check with the used LetsEncrypt go-acme library.

Thanks,
They don't support Zoneedit there either. However, I created an issue there to ask to have zoneedit added. So let's see if it materialises. If Lego do add Zoneedit, would that then be picked up automatically by Traefik?
thanks for you help.

Traefik uses go-acme and the library is updated every couple of months. So don't expect anything fast. In the meantime you could create your TLS certs manually with go-acme (doc) or certbot (doc) and provide them via dynamic config file. They will be valid for 3 months.

You can reference the cert files (doc) or inline them (http provider poc):

tls:
  options:
    default:
      minVersion: VersionTLS12
  certificates:
    - certFile: |-
        -----BEGIN CERTIFICATE-----
        ABCD...
        -----END CERTIFICATE-----
        -----BEGIN CERTIFICATE-----
        EFGH...
        -----END CERTIFICATE-----
      keyFile: |-
        -----BEGIN EC PRIVATE KEY-----
        IJKL...
        -----END EC PRIVATE KEY-----

@bluepuma77
many thanks. I can report that Lego has successfully created a provider for Zoneedit. So only a matter of time. In the meant time I will add my existing certs manually as you outlined. Thank you so much for your help. I look forward to using Traefik!!