Documentation
¶
Overview ¶
Copyright © 2023 Kevin Gong <aoxianglele@icloud.com>
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
Copyright © 2023 Kevin Gong <aoxianglele@icloud.com>
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
Index ¶
Constants ¶
const ConfigFileName = "config.yaml"
const SecretDirName = "secrets/"
const StoreConfigFileName = "store_config.json"
Variables ¶
This section is empty.
Functions ¶
Types ¶
type Config ¶
type Config struct { Storage storage.Config `yaml:"storage"` Plugins []struct { Name string `yaml:"name"` Path string `yaml:"path"` } `yaml:"plugins,omitempty"` }
func LoadConfig ¶ added in v1.0.8
type Notifiers ¶
type Notifiers struct { Lark *notifiers.LarkNotifier `json:"lark,omitempty"` DingTalk *notifiers.DingTalkNotifier `json:"dingtalk,omitempty"` WeCom *notifiers.WeComNotifier `json:"wecom,omitempty"` WebHook *notifiers.Webhook `json:"webhook,omitempty"` }
type StoreConfig ¶ added in v1.0.8
type StoreConfig struct { Stores struct { Curls []*publisher.Store `json:"curls"` Browsers []*publisher.Store `json:"browsers"` Plugins []*publisher.PluginStore `json:"plugins"` } `json:"stores"` Notifiers struct { Lark *notifiers.LarkNotifier `json:"lark"` Dingtalk *notifiers.DingTalkNotifier `json:"dingtalk"` Wecom *notifiers.WeComNotifier `json:"wecom"` Webhook *notifiers.Webhook `json:"webhook"` } `json:"notifiers"` }
func ParseStoreSecretFile ¶ added in v1.0.8
func ParseStoreSecretFile(identifiers []string) (*StoreConfig, error)
解析Store配置文件