Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
张磊
/
FileStorageBeego
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
9fdad84f
authored
2012-03-05 22:57:53 +0800
by
xiemengjun
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
add config module
1 parent
e9261b21
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
28 additions
and
0 deletions
helper/config.go
helper/config.go
0 → 100644
View file @
9fdad84
package
helper
import
(
"json"
"io/ioutil"
"log"
)
var
config
map
[
string
]
string
func
ReadConfig
(
filename
string
)
{
contents
,
err
:=
ioutil
.
ReadFile
(
filename
)
if
err
!=
nil
{
log
.
Exitf
(
"Impossible to read %s"
,
filename
,
err
)
}
data
,
err
:=
json
.
Decode
(
string
(
contents
))
if
err
!=
nil
{
log
.
Exitf
(
"Can't parse %s as JSON"
,
filename
,
err
)
}
config
=
map
[
string
]
string
{
}
for
key
,
value
:=
range
data
.
(
map
[
string
]
interface
{
})
{
config
[
key
]
=
value
.
(
string
)
}
}
func
GetConfig
(
key
string
)
string
{
return
config
[
key
];
}
\ No newline at end of file
Write
Preview
Styling with
Markdown
is supported
Attach a file
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to post a comment