15 lines
238 B
Go
15 lines
238 B
Go
package main
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/LazyBachelor/LazyPM/internal/models"
|
|
"github.com/LazyBachelor/LazyPM/pkg/tui"
|
|
)
|
|
|
|
func main() {
|
|
if err := tui.New().Run(context.Background(), models.BaseConfig); err != nil {
|
|
return
|
|
}
|
|
}
|