Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
ystyle authored Dec 6, 2019
1 parent 40dbbd2 commit 1e40273
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,16 +53,16 @@ type CustomeDriver struct {
}

func NewCustomeDriver() *CustomeDriver {
return &CustomeDriver{}
return &CustomeDriver{}
}

func (mdd *MarkdownDriver) DriverName() string {
return "CustomeDriver"
func (mdd *CustomeDriver ) DriverName() string {
return "CustomeDriver"
}

func (mdd *MarkdownDriver) Load() ([]SqlTemple, error) {
func (mdd *CustomeDriver ) Load() ([]SqlTemple, error) {
var list []SqlTemple
// db.table("sql_store").Find(&list)
return list, nil
}
```
```

0 comments on commit 1e40273

Please sign in to comment.