all repos — homestead @ 62c36b5b667ab10936f444e01e6f2c567c7c2126

Code for my website

internal/storage/sqlite/file.go (view raw)

1
2
3
4
5
6
7
8
9
10
11
12
13
package sqlite

import (
	"strings"
)

func pathNameToFileName(pathname string) string {
	if strings.HasSuffix(pathname, "/") {
		pathname += "index.html"
	}

	return pathname
}