Skip to content

Instantly share code, notes, and snippets.

View peschmae's full-sized avatar
🐢

Mathias Petermann peschmae

🐢
View GitHub Profile
@peschmae
peschmae / yaml-nest.go
Last active March 11, 2024 21:09 — forked from jghiloni/yaml-nest.go
Convert a string with property names that have dots in them to a nested structure
package main
import (
"log"
"os"
"strings"
"gopkg.in/yaml.v2"
)