2017-02-04 22:20:06 -05:00
|
|
|
// Copyright 2017-present The Hugo Authors. All rights reserved.
|
2016-08-07 08:03:03 -04:00
|
|
|
//
|
|
|
|
// 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.
|
|
|
|
|
|
|
|
// Package helpers implements general utility functions that work with
|
|
|
|
// and on content. The helper functions defined here lay down the
|
|
|
|
// foundation of how Hugo works with files and filepaths, and perform
|
|
|
|
// string operations on content.
|
2017-02-04 22:20:06 -05:00
|
|
|
package config
|
2016-09-15 03:32:52 -04:00
|
|
|
|
2017-02-04 22:20:06 -05:00
|
|
|
// Provider provides the configuration settings for Hugo.
|
|
|
|
type Provider interface {
|
2016-08-07 08:03:03 -04:00
|
|
|
GetString(key string) string
|
2016-09-15 03:32:52 -04:00
|
|
|
GetInt(key string) int
|
2016-10-24 07:45:30 -04:00
|
|
|
GetBool(key string) bool
|
2016-08-07 08:03:03 -04:00
|
|
|
GetStringMap(key string) map[string]interface{}
|
|
|
|
GetStringMapString(key string) map[string]string
|
2016-10-24 07:45:30 -04:00
|
|
|
Get(key string) interface{}
|
2017-02-04 22:20:06 -05:00
|
|
|
Set(key string, value interface{})
|
|
|
|
IsSet(key string) bool
|
2016-10-24 07:45:30 -04:00
|
|
|
}
|