Skip to content

Instantly share code, notes, and snippets.

@ScMofeoluwa
ScMofeoluwa / env2json.go
Last active April 13, 2023 10:31
.env configs to json
package main
import (
"bufio"
"encoding/json"
"fmt"
"os"
"strings"
)
package common
import (
"bytes"
"encoding/json"
"encoding/xml"
"io"
"net/http"
gourl "net/url"
"strings"
@IamNator
IamNator / main.go
Last active August 6, 2025 08:21
Clean Database Transactions in Go with GORM
package main
import (
"context"
"fmt"
"gorm.io/driver/sqlite"
"gorm.io/gorm"
)
// Entity represents a database entity