Legacy removed
This commit is contained in:
parent
c0b3067f10
commit
288fe952f5
@ -1,9 +1,7 @@
|
||||
package utils
|
||||
|
||||
import (
|
||||
"io/ioutil"
|
||||
"log"
|
||||
"path/filepath"
|
||||
|
||||
"github.com/joho/godotenv"
|
||||
)
|
||||
@ -14,18 +12,3 @@ func LoadConfig() {
|
||||
log.Fatal("Error loading .env file")
|
||||
}
|
||||
}
|
||||
|
||||
func ReadFiles(dir string) ([]string, error) {
|
||||
files, err := ioutil.ReadDir(dir)
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
|
||||
var filePaths []string
|
||||
for _, file := range files {
|
||||
if !file.IsDir() && filepath.Ext(file.Name()) == ".md" {
|
||||
filePaths = append(filePaths, filepath.Join(dir, file.Name()))
|
||||
}
|
||||
}
|
||||
return filePaths, nil
|
||||
}
|
||||
|
@ -1,25 +0,0 @@
|
||||
// utils/file_reader.go
|
||||
package utils
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
"io/ioutil"
|
||||
|
||||
"gopkg.in/yaml.v3"
|
||||
)
|
||||
|
||||
// Función para leer el archivo YAML
|
||||
func ReadYMLFile(filePath string, out interface{}) error {
|
||||
data, err := ioutil.ReadFile(filePath)
|
||||
if err != nil {
|
||||
return fmt.Errorf("error al leer el archivo %s: %v", filePath, err)
|
||||
}
|
||||
|
||||
// Deserializar el contenido YAML en la estructura Go pasada en "out"
|
||||
err = yaml.Unmarshal(data, out)
|
||||
if err != nil {
|
||||
return fmt.Errorf("error al deserializar el archivo %s: %v", filePath, err)
|
||||
}
|
||||
|
||||
return nil
|
||||
}
|
Loading…
Reference in New Issue
Block a user