21 lines
373 B
Go
21 lines
373 B
Go
package main
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/LazyBachelor/LazyPM/internal/service"
|
|
"github.com/LazyBachelor/LazyPM/pkg/tui"
|
|
)
|
|
|
|
func main() {
|
|
config := service.Config{
|
|
StatisticsStoragePath: "./.pm/stats.json",
|
|
BeadsDBPath: "./.pm/db.db",
|
|
IssuePrefix: "pm",
|
|
}
|
|
|
|
if err := tui.Run(context.Background(), config); err != nil {
|
|
panic(err)
|
|
}
|
|
}
|