Initial commit

This commit is contained in:
Ivan 2025-06-16 13:50:33 +05:00
commit e3da3b9c7a
Signed by: landlord
GPG key ID: 416A03BC4ADA4CD7
9 changed files with 929 additions and 0 deletions

12
template_test.go Normal file
View file

@ -0,0 +1,12 @@
package sitemap
import (
"testing"
)
func TestTemplate(t *testing.T) {
// Initialized in init() function.
if parsingError != nil {
t.Errorf("can't parse template: %v", parsingError)
}
}