mirror of
https://github.com/taigrr/wails.git
synced 2026-04-12 18:11:31 -07:00
15 lines
210 B
Go
15 lines
210 B
Go
// Package stores
|
|
package stores
|
|
|
|
import "os"
|
|
|
|
// Generate stores that are found in the project
|
|
func Generate() error {
|
|
cwd, err := os.Getwd()
|
|
if err != nil {
|
|
return err
|
|
}
|
|
ParseProject(cwd)
|
|
return nil
|
|
}
|