mirror of
https://github.com/SecurityBrewery/catalyst.git
synced 2025-12-06 07:12:46 +01:00
14 lines
173 B
Go
14 lines
173 B
Go
package main
|
|
|
|
import (
|
|
"log"
|
|
|
|
"github.com/SecurityBrewery/catalyst/app"
|
|
)
|
|
|
|
func main() {
|
|
if err := app.App("./catalyst_data").Start(); err != nil {
|
|
log.Fatal(err)
|
|
}
|
|
}
|