all repos — website @ d2085746f3301d770230e7b52986db6994d5e35c

My website

internal/storage/interface.go (view raw)

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package storage

import (
	"go.alanpearce.eu/website/internal/buffer"
)

type Reader interface {
	GetFile(path string) (*File, error)
	CanonicalisePath(path string) (string, bool)
}

type Writer interface {
	Mkdirp(path string) error

	Write(pathname string, content *buffer.Buffer) error
}