mirror of
https://github.com/danielmiessler/fabric
synced 2024-11-10 07:10:31 +00:00
22 lines
358 B
Go
22 lines
358 B
Go
package db
|
|
|
|
type Contexts struct {
|
|
*Storage
|
|
}
|
|
|
|
// GetContext Load a context from file
|
|
func (o *Contexts) GetContext(name string) (ret *Context, err error) {
|
|
var content []byte
|
|
if content, err = o.Load(name); err != nil {
|
|
return
|
|
}
|
|
|
|
ret = &Context{Name: name, Content: string(content)}
|
|
return
|
|
}
|
|
|
|
type Context struct {
|
|
Name string
|
|
Content string
|
|
}
|