Skip to content

Instantly share code, notes, and snippets.

@0rka
0rka / .go
Created January 28, 2018 10:56
playable interface
type Playable interface {
Play() error
}
@0rka
0rka / .go
Last active July 13, 2017 14:34
Unmarshalling JSON structs containing interfaces in Go
package main
import (
"encoding/json"
"fmt"
"time"
)
type Playable interface {
Play() error