2022-04-05 07:07:01 +02:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
2022-11-14 03:26:23 +01:00
|
|
|
"github.com/ddworken/hishtory/client/cmd"
|
2025-01-06 00:06:57 +01:00
|
|
|
"github.com/ddworken/hishtory/client/data"
|
|
|
|
"github.com/ddworken/hishtory/client/lib"
|
2022-04-05 07:07:01 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
func main() {
|
2025-01-06 00:06:57 +01:00
|
|
|
lib.CheckFatalError(data.ValidateHishtoryPath())
|
2022-11-15 05:02:16 +01:00
|
|
|
cmd.Execute()
|
2022-04-05 07:07:01 +02:00
|
|
|
}
|
2022-09-24 10:01:32 +02:00
|
|
|
|
2022-11-15 05:55:10 +01:00
|
|
|
// TODO(feature): Add a session_id column that corresponds to the shell session the command was run in
|
2023-10-21 18:48:36 +02:00
|
|
|
// TODO(feature): Add a shell column that contains the shell name
|