backive/db/db.go

11 lines
120 B
Go
Raw Normal View History

2021-10-18 22:36:54 +02:00
package db
import "encoding/json"
var database map[string]string
func Save() {
jsonstr := json.Marshal(database)
}