This repository has been archived on 2025-03-01. You can view files and clone it, but cannot push or open issues or pull requests.
trantor/language_develop.go
2015-01-22 23:02:00 -06:00

16 lines
356 B
Go

// +build !prod
// This is a dummy implementation of GuessLang used to make the compilation faster on development
//
// To build trantor with the proper language guessing do:
// $ go build -tags prod
package main
import (
"git.gitorious.org/go-pkg/epubgo.git"
)
func GuessLang(epub *epubgo.Epub, orig_langs []string) []string {
return orig_langs
}