mirror of
https://github.com/eiblog/eiblog.git
synced 2026-02-04 13:52:26 +08:00
13 lines
146 B
Go
13 lines
146 B
Go
// Package setting provides ...
|
|
package setting
|
|
|
|
import (
|
|
"fmt"
|
|
"testing"
|
|
)
|
|
|
|
func TestInit(t *testing.T) {
|
|
init()
|
|
fmt.Printf("%v\n", *Conf)
|
|
}
|