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-04-21 21:32:01 -04:00

16 lines
345 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 (
"github.com/meskio/epubgo"
)
func GuessLang(epub *epubgo.Epub, orig_langs []string) []string {
return orig_langs
}