mirror of https://github.com/sunface/rust-course
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
306 B
17 lines
306 B
package misc
|
|
|
|
import (
|
|
"encoding/base64"
|
|
|
|
"go.uber.org/zap"
|
|
)
|
|
|
|
// Conf is the global var for config
|
|
var Conf *Config
|
|
|
|
// Log is the global var for log
|
|
var Log *zap.Logger
|
|
|
|
// Base64 is the base64 handler
|
|
var Base64 = base64.NewEncoding("ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/")
|