mirror of
https://github.com/spf13/viper
synced 2025-05-06 20:27:17 +00:00
18 lines
501 B
Go
18 lines
501 B
Go
|
// +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
|
||
|
}
|