spf13--viper/util_notoml.go

18 lines
501 B
Go
Raw Normal View History

// +build !toml
// Copyright © 2014 Steve Francia <spf@spf13.com>.
//
// Use of this source code is governed by an MIT-style
// license that can be found in the LICENSE file.
// Viper is a application configuration system.
// It believes that applications can be configured a variety of ways
// via flags, ENVIRONMENT variables, configuration files retrieved
// from the file system, or a remote key/value store.
package viper
func unmarshalTOML(data string, v interface{}) error {
return nil
}