You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
box-o-sand/gotime/smplt/simplate.go

36 lines
508 B

package smplt
import (
"strings"
)
const (
SIMPLATE_TYPE_RENDERED = "rendered"
SIMPLATE_TYPE_STATIC = "static"
SIMPLATE_TYPE_NEGOTIATED = "negotiated"
)
type Simplate struct {
Type string
}
func SimplateFromString(filename, content string) *Simplate {
nbreaks := strings.Count(content, " ")
s := &Simplate{
Type: SIMPLATE_TYPE_STATIC,
}
if nbreaks == 2 {
s.Type = SIMPLATE_TYPE_RENDERED
return s
}
if nbreaks > 2 {
s.Type = SIMPLATE_TYPE_NEGOTIATED
return s
}
return s
}