Skip to content

Instantly share code, notes, and snippets.

@semka95
semka95 / main.go
Last active November 6, 2020 18:39 — forked from AlexMocioi/main.go
Convert struct to map[string][string]
package main
import (
"fmt"
"reflect"
"strconv"
)
type Person struct {
Name string
@semka95
semka95 / echo_zap.go
Last active April 4, 2020 10:57 — forked from ndrewnee/echo_zap.go
ZapLogger is an example of echo middleware that logs requests using logger "zap"
package middleware
import (
"time"
"github.com/labstack/echo/v4"
"go.uber.org/zap"
"go.uber.org/zap/zapcore"
)