refactor: swap use html/template for text/template (#103)

This commit is contained in:
Mohammed Al Sahaf 2022-06-12 20:58:35 +03:00 committed by GitHub
parent 9cc6040a09
commit a83fac18bf
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -18,13 +18,13 @@ import (
"bytes" "bytes"
"context" "context"
"fmt" "fmt"
"html/template"
"io/ioutil" "io/ioutil"
"log" "log"
"os" "os"
"os/exec" "os/exec"
"path/filepath" "path/filepath"
"strings" "strings"
"text/template"
"time" "time"
"github.com/caddyserver/xcaddy/internal/utils" "github.com/caddyserver/xcaddy/internal/utils"