Initial commit.

This commit is contained in:
2018-04-30 18:42:17 +05:00
commit 3456ecd312
511 changed files with 199388 additions and 0 deletions

15
api/json/exported.go Normal file
View File

@@ -0,0 +1,15 @@
package json
import (
// local
"github.com/pztrn/fastpastebin/context"
)
var (
c *context.Context
)
func New(cc *context.Context) {
c = cc
c.Logger.Info().Msg("Initializing JSON API...")
}