Skip to content

Instantly share code, notes, and snippets.

View jdavisclark's full-sized avatar

Davis Clark jdavisclark

View GitHub Profile
@jdavisclark
jdavisclark / gist:08c7b286a4aad7873b2819a864c74583
Last active April 9, 2018 13:58
my made up app def language
- endpoint
for: movies
that: persists new records
for model: movie
backed by: postgres
cached by: redis
- endpoint
for: movies
that: retrieves records
@jdavisclark
jdavisclark / main.go
Last active February 11, 2023 06:02
IOC with a localised container
package main
import (
"errors"
"fmt"
"os"
"reflect"
)
type Writer interface {