catThis is a simple libary to extract text from plaintext, .docx, .odt and .rtf files.Installgo get -u github.com/lu4p/catBasic Usagepackage main import ( "fmt""github.com/lu4p/cat" ) funcmain(){ txt, _:=cat.File("filename") fmt.Println(txt) }