Documentation ¶
Overview ¶
Nging is a toolbox for webmasters Copyright (C) 2018-present Wenhui Shen <swh@admpub.com>
This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more details.
You should have received a copy of the GNU Affero General Public License along with this program. If not, see <https://www.gnu.org/licenses/>.
Index ¶
Constants ¶
This section is empty.
Variables ¶
var ( DefaultModal = Modal{ ExtButtons: []Button{}, } PathFixer = func(ctx echo.Context, conf string) string { return conf } ReadConfigFile = func(file string) ([]byte, error) { return os.ReadFile(file) } WriteConfigFile = func(file string, b []byte) error { err := com.MkdirAll(filepath.Dir(file), os.ModePerm) if err != nil { return err } return os.WriteFile(file, b, os.ModePerm) } )