code cleanup

This commit is contained in:
2024-04-23 10:27:07 -04:00
parent 984909a648
commit e8eff432fc
5 changed files with 83 additions and 65 deletions

5
generator/plain.go Normal file
View File

@@ -0,0 +1,5 @@
package generator
func (g *Generator) generatePlainUrl(file string) (string, error) {
return "plain/" + file, nil
}