diff --git a/Makefile b/Makefile index b352b8f..db93c7c 100644 --- a/Makefile +++ b/Makefile @@ -6,8 +6,8 @@ # ...in github actions comes from make -e version=git_ref version=$(shell cat VERSION) commit=$(shell git show --no-patch --format=format:%H HEAD) -buildVersionVar=github.com/pja237/slurmcommander-dev/internal/version.BuildVersion -buildCommitVar=github.com/pja237/slurmcommander-dev/internal/version.BuildCommit +buildVersionVar=github.com/CLIP-HPC/SlurmCommander/internal/version.BuildVersion +buildCommitVar=github.com/CLIP-HPC/SlurmCommander/internal/version.BuildCommit # various directories bindirs=$(wildcard ./cmd/*) diff --git a/README.md b/README.md index e65c3d4..9549c89 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,7 @@ SlurmCommander is a simple, lightweight, no-dependencies text-based user interface (TUI) to your cluster. It ties together multiple slurm commands to provide you with a simple and efficient interaction point with slurm. -Installation does not require any special privileges or environment. Simply download the [binary](https://github.com/pja237/SlurmCommander-dev/releases/latest), fill out a small [config file](./cmd/scom/scom.conf) and it's ready to run. +Installation does not require any special privileges or environment. Simply download the [binary](https://github.com/CLIP-HPC/SlurmCommander/releases/latest), fill out a small [config file](./cmd/scom/scom.conf) and it's ready to run. You can view, search, analyze and interact with: @@ -27,7 +27,7 @@ SlurmCommander does not require any special privileges to be installed, see inst ### Regular users -1. Download the pre-built [binary](https://github.com/pja237/SlurmCommander-dev/releases/latest) +1. Download the pre-built [binary](https://github.com/CLIP-HPC/SlurmCommander/releases/latest) 2. Download the [annotated config](./cmd/scom/scom.conf) file 3. Edit the config file, follow instructions inside 4. Create scom directory in your $HOME and place the edited config there: `mkdir $HOME/scom` diff --git a/cmd/scom/scom.go b/cmd/scom/scom.go index ee78f18..2a8f889 100644 --- a/cmd/scom/scom.go +++ b/cmd/scom/scom.go @@ -10,19 +10,19 @@ import ( "github.com/charmbracelet/bubbles/viewport" tea "github.com/charmbracelet/bubbletea" "github.com/charmbracelet/lipgloss" - "github.com/pja237/slurmcommander-dev/internal/cmdline" - "github.com/pja237/slurmcommander-dev/internal/command" - "github.com/pja237/slurmcommander-dev/internal/config" - "github.com/pja237/slurmcommander-dev/internal/logger" - "github.com/pja237/slurmcommander-dev/internal/model" - "github.com/pja237/slurmcommander-dev/internal/model/tabs/clustertab" - "github.com/pja237/slurmcommander-dev/internal/model/tabs/jobdetailstab" - "github.com/pja237/slurmcommander-dev/internal/model/tabs/jobfromtemplate" - "github.com/pja237/slurmcommander-dev/internal/model/tabs/jobhisttab" - "github.com/pja237/slurmcommander-dev/internal/model/tabs/jobtab" - "github.com/pja237/slurmcommander-dev/internal/styles" - "github.com/pja237/slurmcommander-dev/internal/table" - "github.com/pja237/slurmcommander-dev/internal/version" + "github.com/CLIP-HPC/SlurmCommander/internal/cmdline" + "github.com/CLIP-HPC/SlurmCommander/internal/command" + "github.com/CLIP-HPC/SlurmCommander/internal/config" + "github.com/CLIP-HPC/SlurmCommander/internal/logger" + "github.com/CLIP-HPC/SlurmCommander/internal/model" + "github.com/CLIP-HPC/SlurmCommander/internal/model/tabs/clustertab" + "github.com/CLIP-HPC/SlurmCommander/internal/model/tabs/jobdetailstab" + "github.com/CLIP-HPC/SlurmCommander/internal/model/tabs/jobfromtemplate" + "github.com/CLIP-HPC/SlurmCommander/internal/model/tabs/jobhisttab" + "github.com/CLIP-HPC/SlurmCommander/internal/model/tabs/jobtab" + "github.com/CLIP-HPC/SlurmCommander/internal/styles" + "github.com/CLIP-HPC/SlurmCommander/internal/table" + "github.com/CLIP-HPC/SlurmCommander/internal/version" ) func main() { diff --git a/go.mod b/go.mod index 04fe7e6..e2be66e 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module github.com/pja237/slurmcommander-dev +module github.com/CLIP-HPC/SlurmCommander go 1.18 diff --git a/internal/command/command.go b/internal/command/command.go index d00b79d..8472cbc 100644 --- a/internal/command/command.go +++ b/internal/command/command.go @@ -8,7 +8,7 @@ import ( "os/user" tea "github.com/charmbracelet/bubbletea" - "github.com/pja237/slurmcommander-dev/internal/config" + "github.com/CLIP-HPC/SlurmCommander/internal/config" ) var cc config.ConfigContainer @@ -41,7 +41,7 @@ func GetUserName(l *log.Logger) tea.Cmd { l.Printf("GetUserName FAILED: %s", err) return ErrorMsg{ From: "GetUserName", - ErrHelp: "Failed to get username, hard to imagine why. Please open an issue with us here: https://github.com/pja237/SlurmCommander-dev/issues/new/choose", + ErrHelp: "Failed to get username, hard to imagine why. Please open an issue with us here: https://github.com/CLIP-HPC/SlurmCommander/issues/new/choose", OrigErr: err, } } diff --git a/internal/config/config.go b/internal/config/config.go index 723b82a..1307fbc 100644 --- a/internal/config/config.go +++ b/internal/config/config.go @@ -12,7 +12,7 @@ import ( "time" "github.com/BurntSushi/toml" - "github.com/pja237/slurmcommander-dev/internal/defaults" + "github.com/CLIP-HPC/SlurmCommander/internal/defaults" ) type ConfigContainer struct { diff --git a/internal/model/init.go b/internal/model/init.go index 945bca5..2b37339 100644 --- a/internal/model/init.go +++ b/internal/model/init.go @@ -2,10 +2,10 @@ package model import ( tea "github.com/charmbracelet/bubbletea" - "github.com/pja237/slurmcommander-dev/internal/command" - "github.com/pja237/slurmcommander-dev/internal/model/tabs/clustertab" - "github.com/pja237/slurmcommander-dev/internal/model/tabs/jobfromtemplate" - "github.com/pja237/slurmcommander-dev/internal/model/tabs/jobtab" + "github.com/CLIP-HPC/SlurmCommander/internal/command" + "github.com/CLIP-HPC/SlurmCommander/internal/model/tabs/clustertab" + "github.com/CLIP-HPC/SlurmCommander/internal/model/tabs/jobfromtemplate" + "github.com/CLIP-HPC/SlurmCommander/internal/model/tabs/jobtab" ) func (m Model) Init() tea.Cmd { diff --git a/internal/model/model.go b/internal/model/model.go index b2eb30f..e5cbe22 100644 --- a/internal/model/model.go +++ b/internal/model/model.go @@ -4,13 +4,13 @@ import ( "log" "github.com/charmbracelet/bubbles/help" - "github.com/pja237/slurmcommander-dev/internal/config" - "github.com/pja237/slurmcommander-dev/internal/model/tabs/abouttab" - "github.com/pja237/slurmcommander-dev/internal/model/tabs/clustertab" - "github.com/pja237/slurmcommander-dev/internal/model/tabs/jobdetailstab" - "github.com/pja237/slurmcommander-dev/internal/model/tabs/jobfromtemplate" - "github.com/pja237/slurmcommander-dev/internal/model/tabs/jobhisttab" - "github.com/pja237/slurmcommander-dev/internal/model/tabs/jobtab" + "github.com/CLIP-HPC/SlurmCommander/internal/config" + "github.com/CLIP-HPC/SlurmCommander/internal/model/tabs/abouttab" + "github.com/CLIP-HPC/SlurmCommander/internal/model/tabs/clustertab" + "github.com/CLIP-HPC/SlurmCommander/internal/model/tabs/jobdetailstab" + "github.com/CLIP-HPC/SlurmCommander/internal/model/tabs/jobfromtemplate" + "github.com/CLIP-HPC/SlurmCommander/internal/model/tabs/jobhisttab" + "github.com/CLIP-HPC/SlurmCommander/internal/model/tabs/jobtab" ) const ( diff --git a/internal/model/tabs/abouttab/abouttab.go b/internal/model/tabs/abouttab/abouttab.go index 7e45a27..8c359d4 100644 --- a/internal/model/tabs/abouttab/abouttab.go +++ b/internal/model/tabs/abouttab/abouttab.go @@ -2,7 +2,7 @@ package abouttab import ( "github.com/charmbracelet/bubbles/key" - "github.com/pja237/slurmcommander-dev/internal/keybindings" + "github.com/CLIP-HPC/SlurmCommander/internal/keybindings" ) type Keys map[*key.Binding]bool diff --git a/internal/model/tabs/clustertab/clustertab.go b/internal/model/tabs/clustertab/clustertab.go index 671600c..255869b 100644 --- a/internal/model/tabs/clustertab/clustertab.go +++ b/internal/model/tabs/clustertab/clustertab.go @@ -6,9 +6,9 @@ import ( "github.com/charmbracelet/bubbles/progress" "github.com/charmbracelet/bubbles/textinput" - "github.com/pja237/slurmcommander-dev/internal/generic" - "github.com/pja237/slurmcommander-dev/internal/slurm" - "github.com/pja237/slurmcommander-dev/internal/table" + "github.com/CLIP-HPC/SlurmCommander/internal/generic" + "github.com/CLIP-HPC/SlurmCommander/internal/slurm" + "github.com/CLIP-HPC/SlurmCommander/internal/table" ) type ClusterTab struct { diff --git a/internal/model/tabs/clustertab/clustertabcommands.go b/internal/model/tabs/clustertab/clustertabcommands.go index 99013d9..35ab029 100644 --- a/internal/model/tabs/clustertab/clustertabcommands.go +++ b/internal/model/tabs/clustertab/clustertabcommands.go @@ -7,8 +7,8 @@ import ( "time" tea "github.com/charmbracelet/bubbletea" - "github.com/pja237/slurmcommander-dev/internal/command" - "github.com/pja237/slurmcommander-dev/internal/config" + "github.com/CLIP-HPC/SlurmCommander/internal/command" + "github.com/CLIP-HPC/SlurmCommander/internal/config" ) var ( @@ -38,7 +38,7 @@ func GetSinfo(t time.Time) tea.Msg { if err != nil { return command.ErrorMsg{ From: "GetSinfo", - ErrHelp: "sinfo JSON failed to parse, note your slurm version and open an issue with us here: https://github.com/pja237/SlurmCommander-dev/issues/new/choose", + ErrHelp: "sinfo JSON failed to parse, note your slurm version and open an issue with us here: https://github.com/CLIP-HPC/SlurmCommander/issues/new/choose", OrigErr: err, } } diff --git a/internal/model/tabs/clustertab/clustertabkeys.go b/internal/model/tabs/clustertab/clustertabkeys.go index 5b43b93..87271d8 100644 --- a/internal/model/tabs/clustertab/clustertabkeys.go +++ b/internal/model/tabs/clustertab/clustertabkeys.go @@ -2,7 +2,7 @@ package clustertab import ( "github.com/charmbracelet/bubbles/key" - "github.com/pja237/slurmcommander-dev/internal/keybindings" + "github.com/CLIP-HPC/SlurmCommander/internal/keybindings" ) type Keys map[*key.Binding]bool diff --git a/internal/model/tabs/clustertab/clustertabtable.go b/internal/model/tabs/clustertab/clustertabtable.go index 6e563b3..b59284e 100644 --- a/internal/model/tabs/clustertab/clustertabtable.go +++ b/internal/model/tabs/clustertab/clustertabtable.go @@ -6,9 +6,9 @@ import ( "strconv" "strings" - "github.com/pja237/slurmcommander-dev/internal/command" - "github.com/pja237/slurmcommander-dev/internal/slurm" - "github.com/pja237/slurmcommander-dev/internal/table" + "github.com/CLIP-HPC/SlurmCommander/internal/command" + "github.com/CLIP-HPC/SlurmCommander/internal/slurm" + "github.com/CLIP-HPC/SlurmCommander/internal/table" ) const ( diff --git a/internal/model/tabs/clustertab/clustertabview.go b/internal/model/tabs/clustertab/clustertabview.go index e69182d..99445d3 100644 --- a/internal/model/tabs/clustertab/clustertabview.go +++ b/internal/model/tabs/clustertab/clustertabview.go @@ -8,9 +8,9 @@ import ( "github.com/charmbracelet/bubbles/progress" "github.com/charmbracelet/lipgloss" "github.com/dustin/go-humanize" - "github.com/pja237/slurmcommander-dev/internal/generic" - "github.com/pja237/slurmcommander-dev/internal/slurm" - "github.com/pja237/slurmcommander-dev/internal/styles" + "github.com/CLIP-HPC/SlurmCommander/internal/generic" + "github.com/CLIP-HPC/SlurmCommander/internal/slurm" + "github.com/CLIP-HPC/SlurmCommander/internal/styles" ) func (ct *ClusterTab) tabCluster() string { diff --git a/internal/model/tabs/jobdetailstab/jobdetailstab.go b/internal/model/tabs/jobdetailstab/jobdetailstab.go index c32c61e..725dd62 100644 --- a/internal/model/tabs/jobdetailstab/jobdetailstab.go +++ b/internal/model/tabs/jobdetailstab/jobdetailstab.go @@ -2,7 +2,7 @@ package jobdetailstab import ( "github.com/charmbracelet/bubbles/viewport" - "github.com/pja237/slurmcommander-dev/internal/slurm" + "github.com/CLIP-HPC/SlurmCommander/internal/slurm" ) type JobDetailsTab struct { diff --git a/internal/model/tabs/jobdetailstab/jobdetailstabkeys.go b/internal/model/tabs/jobdetailstab/jobdetailstabkeys.go index 23e412e..2ebcc3e 100644 --- a/internal/model/tabs/jobdetailstab/jobdetailstabkeys.go +++ b/internal/model/tabs/jobdetailstab/jobdetailstabkeys.go @@ -2,7 +2,7 @@ package jobdetailstab import ( "github.com/charmbracelet/bubbles/key" - "github.com/pja237/slurmcommander-dev/internal/keybindings" + "github.com/CLIP-HPC/SlurmCommander/internal/keybindings" ) type Keys map[*key.Binding]bool diff --git a/internal/model/tabs/jobdetailstab/jobdetailstabview.go b/internal/model/tabs/jobdetailstab/jobdetailstabview.go index 6930229..03cc685 100644 --- a/internal/model/tabs/jobdetailstab/jobdetailstabview.go +++ b/internal/model/tabs/jobdetailstab/jobdetailstabview.go @@ -7,8 +7,8 @@ import ( "strings" "time" - "github.com/pja237/slurmcommander-dev/internal/model/tabs/jobhisttab" - "github.com/pja237/slurmcommander-dev/internal/styles" + "github.com/CLIP-HPC/SlurmCommander/internal/model/tabs/jobhisttab" + "github.com/CLIP-HPC/SlurmCommander/internal/styles" ) func (jd *JobDetailsTab) tabJobDetails(jh *jobhisttab.JobHistTab, l *log.Logger) (scr string) { diff --git a/internal/model/tabs/jobfromtemplate/jobfromtemplate.go b/internal/model/tabs/jobfromtemplate/jobfromtemplate.go index bce70a4..677482e 100644 --- a/internal/model/tabs/jobfromtemplate/jobfromtemplate.go +++ b/internal/model/tabs/jobfromtemplate/jobfromtemplate.go @@ -10,8 +10,8 @@ import ( "github.com/charmbracelet/bubbles/textarea" tea "github.com/charmbracelet/bubbletea" - "github.com/pja237/slurmcommander-dev/internal/defaults" - "github.com/pja237/slurmcommander-dev/internal/table" + "github.com/CLIP-HPC/SlurmCommander/internal/defaults" + "github.com/CLIP-HPC/SlurmCommander/internal/table" ) type JobFromTemplateTab struct { diff --git a/internal/model/tabs/jobfromtemplate/jobfromtemplatekeys.go b/internal/model/tabs/jobfromtemplate/jobfromtemplatekeys.go index 02cfc83..620c0e8 100644 --- a/internal/model/tabs/jobfromtemplate/jobfromtemplatekeys.go +++ b/internal/model/tabs/jobfromtemplate/jobfromtemplatekeys.go @@ -2,7 +2,7 @@ package jobfromtemplate import ( "github.com/charmbracelet/bubbles/key" - "github.com/pja237/slurmcommander-dev/internal/keybindings" + "github.com/CLIP-HPC/SlurmCommander/internal/keybindings" ) type Keys map[*key.Binding]bool diff --git a/internal/model/tabs/jobfromtemplate/jobfromtemplateview.go b/internal/model/tabs/jobfromtemplate/jobfromtemplateview.go index e5c60a1..e29d483 100644 --- a/internal/model/tabs/jobfromtemplate/jobfromtemplateview.go +++ b/internal/model/tabs/jobfromtemplate/jobfromtemplateview.go @@ -4,7 +4,7 @@ import ( "log" "strings" - "github.com/pja237/slurmcommander-dev/internal/styles" + "github.com/CLIP-HPC/SlurmCommander/internal/styles" ) func (jft *JobFromTemplateTab) tabJobFromTemplate() string { diff --git a/internal/model/tabs/jobhisttab/jobhisttab.go b/internal/model/tabs/jobhisttab/jobhisttab.go index 5c17ed7..7779f0d 100644 --- a/internal/model/tabs/jobhisttab/jobhisttab.go +++ b/internal/model/tabs/jobhisttab/jobhisttab.go @@ -5,9 +5,9 @@ import ( "time" "github.com/charmbracelet/bubbles/textinput" - "github.com/pja237/slurmcommander-dev/internal/generic" - "github.com/pja237/slurmcommander-dev/internal/stats" - "github.com/pja237/slurmcommander-dev/internal/table" + "github.com/CLIP-HPC/SlurmCommander/internal/generic" + "github.com/CLIP-HPC/SlurmCommander/internal/stats" + "github.com/CLIP-HPC/SlurmCommander/internal/table" ) type JobHistTab struct { diff --git a/internal/model/tabs/jobhisttab/jobhisttabcommands.go b/internal/model/tabs/jobhisttab/jobhisttabcommands.go index 4a14ea7..506d44a 100644 --- a/internal/model/tabs/jobhisttab/jobhisttabcommands.go +++ b/internal/model/tabs/jobhisttab/jobhisttabcommands.go @@ -9,8 +9,8 @@ import ( "time" tea "github.com/charmbracelet/bubbletea" - "github.com/pja237/slurmcommander-dev/internal/command" - "github.com/pja237/slurmcommander-dev/internal/config" + "github.com/CLIP-HPC/SlurmCommander/internal/command" + "github.com/CLIP-HPC/SlurmCommander/internal/config" ) var ( @@ -64,7 +64,7 @@ func GetSacctHist(uaccs string, d uint, t uint, l *log.Logger) tea.Cmd { l.Printf("Error unmarshall: %q\n", err) return command.ErrorMsg{ From: "GetSacctHist", - ErrHelp: "sacct JSON failed to parse, note your slurm version and open an issue with us here: https://github.com/pja237/SlurmCommander-dev/issues/new/choose", + ErrHelp: "sacct JSON failed to parse, note your slurm version and open an issue with us here: https://github.com/CLIP-HPC/SlurmCommander/issues/new/choose", OrigErr: err, } //return jht diff --git a/internal/model/tabs/jobhisttab/jobhisttabkeys.go b/internal/model/tabs/jobhisttab/jobhisttabkeys.go index b0df824..db60086 100644 --- a/internal/model/tabs/jobhisttab/jobhisttabkeys.go +++ b/internal/model/tabs/jobhisttab/jobhisttabkeys.go @@ -2,7 +2,7 @@ package jobhisttab import ( "github.com/charmbracelet/bubbles/key" - "github.com/pja237/slurmcommander-dev/internal/keybindings" + "github.com/CLIP-HPC/SlurmCommander/internal/keybindings" ) type Keys map[*key.Binding]bool diff --git a/internal/model/tabs/jobhisttab/jobhisttabtable.go b/internal/model/tabs/jobhisttab/jobhisttabtable.go index 0222a56..51c3e6d 100644 --- a/internal/model/tabs/jobhisttab/jobhisttabtable.go +++ b/internal/model/tabs/jobhisttab/jobhisttabtable.go @@ -6,9 +6,9 @@ import ( "strconv" "strings" - "github.com/pja237/slurmcommander-dev/internal/command" - "github.com/pja237/slurmcommander-dev/internal/slurm" - "github.com/pja237/slurmcommander-dev/internal/table" + "github.com/CLIP-HPC/SlurmCommander/internal/command" + "github.com/CLIP-HPC/SlurmCommander/internal/slurm" + "github.com/CLIP-HPC/SlurmCommander/internal/table" ) var SacctTabCols = []table.Column{ diff --git a/internal/model/tabs/jobhisttab/jobhisttabview.go b/internal/model/tabs/jobhisttab/jobhisttabview.go index 14993d3..48e4f62 100644 --- a/internal/model/tabs/jobhisttab/jobhisttabview.go +++ b/internal/model/tabs/jobhisttab/jobhisttabview.go @@ -6,8 +6,8 @@ import ( "strings" "github.com/charmbracelet/lipgloss" - "github.com/pja237/slurmcommander-dev/internal/generic" - "github.com/pja237/slurmcommander-dev/internal/styles" + "github.com/CLIP-HPC/SlurmCommander/internal/generic" + "github.com/CLIP-HPC/SlurmCommander/internal/styles" ) func (jh *JobHistTab) tabJobHist() string { diff --git a/internal/model/tabs/jobtab/jobtab.go b/internal/model/tabs/jobtab/jobtab.go index de603d9..e998ccf 100644 --- a/internal/model/tabs/jobtab/jobtab.go +++ b/internal/model/tabs/jobtab/jobtab.go @@ -6,9 +6,9 @@ import ( "github.com/charmbracelet/bubbles/list" "github.com/charmbracelet/bubbles/textinput" - "github.com/pja237/slurmcommander-dev/internal/generic" - "github.com/pja237/slurmcommander-dev/internal/stats" - "github.com/pja237/slurmcommander-dev/internal/table" + "github.com/CLIP-HPC/SlurmCommander/internal/generic" + "github.com/CLIP-HPC/SlurmCommander/internal/stats" + "github.com/CLIP-HPC/SlurmCommander/internal/table" ) type JobTab struct { diff --git a/internal/model/tabs/jobtab/jobtabcommands.go b/internal/model/tabs/jobtab/jobtabcommands.go index 21526b1..73ca712 100644 --- a/internal/model/tabs/jobtab/jobtabcommands.go +++ b/internal/model/tabs/jobtab/jobtabcommands.go @@ -7,8 +7,8 @@ import ( "time" tea "github.com/charmbracelet/bubbletea" - "github.com/pja237/slurmcommander-dev/internal/command" - "github.com/pja237/slurmcommander-dev/internal/config" + "github.com/CLIP-HPC/SlurmCommander/internal/command" + "github.com/CLIP-HPC/SlurmCommander/internal/config" ) var ( @@ -39,7 +39,7 @@ func GetSqueue(t time.Time) tea.Msg { if err != nil { return command.ErrorMsg{ From: "GetSqueue", - ErrHelp: "squeue JSON failed to parse, note your slurm version and open an issue with us here: https://github.com/pja237/SlurmCommander-dev/issues/new/choose", + ErrHelp: "squeue JSON failed to parse, note your slurm version and open an issue with us here: https://github.com/CLIP-HPC/SlurmCommander/issues/new/choose", OrigErr: err, } } diff --git a/internal/model/tabs/jobtab/jobtabkeys.go b/internal/model/tabs/jobtab/jobtabkeys.go index 49dec02..a3b93f0 100644 --- a/internal/model/tabs/jobtab/jobtabkeys.go +++ b/internal/model/tabs/jobtab/jobtabkeys.go @@ -2,7 +2,7 @@ package jobtab import ( "github.com/charmbracelet/bubbles/key" - "github.com/pja237/slurmcommander-dev/internal/keybindings" + "github.com/CLIP-HPC/SlurmCommander/internal/keybindings" ) type Keys map[*key.Binding]bool diff --git a/internal/model/tabs/jobtab/jobtabmenu.go b/internal/model/tabs/jobtab/jobtabmenu.go index f94e5cc..de1cf61 100644 --- a/internal/model/tabs/jobtab/jobtabmenu.go +++ b/internal/model/tabs/jobtab/jobtabmenu.go @@ -5,8 +5,8 @@ import ( "github.com/charmbracelet/bubbles/list" tea "github.com/charmbracelet/bubbletea" - "github.com/pja237/slurmcommander-dev/internal/command" - "github.com/pja237/slurmcommander-dev/internal/styles" + "github.com/CLIP-HPC/SlurmCommander/internal/command" + "github.com/CLIP-HPC/SlurmCommander/internal/styles" ) type JobMenuOptions map[string]MenuOptions diff --git a/internal/model/tabs/jobtab/jobtabtable.go b/internal/model/tabs/jobtab/jobtabtable.go index f09e260..e6d79ae 100644 --- a/internal/model/tabs/jobtab/jobtabtable.go +++ b/internal/model/tabs/jobtab/jobtabtable.go @@ -7,9 +7,9 @@ import ( "strings" "time" - "github.com/pja237/slurmcommander-dev/internal/command" - "github.com/pja237/slurmcommander-dev/internal/slurm" - "github.com/pja237/slurmcommander-dev/internal/table" + "github.com/CLIP-HPC/SlurmCommander/internal/command" + "github.com/CLIP-HPC/SlurmCommander/internal/slurm" + "github.com/CLIP-HPC/SlurmCommander/internal/table" ) var SqueueTabCols = []table.Column{ diff --git a/internal/model/tabs/jobtab/jobtabview.go b/internal/model/tabs/jobtab/jobtabview.go index b053def..7764fff 100644 --- a/internal/model/tabs/jobtab/jobtabview.go +++ b/internal/model/tabs/jobtab/jobtabview.go @@ -8,8 +8,8 @@ import ( "time" "github.com/charmbracelet/lipgloss" - "github.com/pja237/slurmcommander-dev/internal/generic" - "github.com/pja237/slurmcommander-dev/internal/styles" + "github.com/CLIP-HPC/SlurmCommander/internal/generic" + "github.com/CLIP-HPC/SlurmCommander/internal/styles" ) func (jt *JobTab) tabJobs() string { diff --git a/internal/model/update.go b/internal/model/update.go index cdffe03..93ef27b 100644 --- a/internal/model/update.go +++ b/internal/model/update.go @@ -11,15 +11,15 @@ import ( "github.com/charmbracelet/bubbles/textarea" "github.com/charmbracelet/bubbles/textinput" tea "github.com/charmbracelet/bubbletea" - "github.com/pja237/slurmcommander-dev/internal/command" - "github.com/pja237/slurmcommander-dev/internal/keybindings" - "github.com/pja237/slurmcommander-dev/internal/model/tabs/clustertab" - "github.com/pja237/slurmcommander-dev/internal/model/tabs/jobfromtemplate" - "github.com/pja237/slurmcommander-dev/internal/model/tabs/jobhisttab" - "github.com/pja237/slurmcommander-dev/internal/model/tabs/jobtab" - "github.com/pja237/slurmcommander-dev/internal/slurm" - "github.com/pja237/slurmcommander-dev/internal/styles" - "github.com/pja237/slurmcommander-dev/internal/table" + "github.com/CLIP-HPC/SlurmCommander/internal/command" + "github.com/CLIP-HPC/SlurmCommander/internal/keybindings" + "github.com/CLIP-HPC/SlurmCommander/internal/model/tabs/clustertab" + "github.com/CLIP-HPC/SlurmCommander/internal/model/tabs/jobfromtemplate" + "github.com/CLIP-HPC/SlurmCommander/internal/model/tabs/jobhisttab" + "github.com/CLIP-HPC/SlurmCommander/internal/model/tabs/jobtab" + "github.com/CLIP-HPC/SlurmCommander/internal/slurm" + "github.com/CLIP-HPC/SlurmCommander/internal/styles" + "github.com/CLIP-HPC/SlurmCommander/internal/table" ) type errMsg error diff --git a/internal/model/view.go b/internal/model/view.go index e034cae..61d42ce 100644 --- a/internal/model/view.go +++ b/internal/model/view.go @@ -5,9 +5,9 @@ import ( "strings" "github.com/charmbracelet/lipgloss" - "github.com/pja237/slurmcommander-dev/internal/keybindings" - "github.com/pja237/slurmcommander-dev/internal/styles" - "github.com/pja237/slurmcommander-dev/internal/version" + "github.com/CLIP-HPC/SlurmCommander/internal/keybindings" + "github.com/CLIP-HPC/SlurmCommander/internal/styles" + "github.com/CLIP-HPC/SlurmCommander/internal/version" ) // genTabs() generates top tabs diff --git a/internal/slurm/sacct.go b/internal/slurm/sacct.go index 6ab9885..5f19638 100644 --- a/internal/slurm/sacct.go +++ b/internal/slurm/sacct.go @@ -1,7 +1,7 @@ package slurm import ( - "github.com/pja237/slurmcommander-dev/internal/openapidb" + "github.com/CLIP-HPC/SlurmCommander/internal/openapidb" ) // SacctJobHist struct holds job history. diff --git a/internal/slurm/sinfo.go b/internal/slurm/sinfo.go index 3f92b44..7edca36 100644 --- a/internal/slurm/sinfo.go +++ b/internal/slurm/sinfo.go @@ -5,7 +5,7 @@ import ( "strconv" "strings" - "github.com/pja237/slurmcommander-dev/internal/openapi" + "github.com/CLIP-HPC/SlurmCommander/internal/openapi" ) type SinfoJSON struct { diff --git a/internal/slurm/squeue.go b/internal/slurm/squeue.go index 4ed369c..54ca49a 100644 --- a/internal/slurm/squeue.go +++ b/internal/slurm/squeue.go @@ -1,7 +1,7 @@ package slurm import ( - "github.com/pja237/slurmcommander-dev/internal/openapi" + "github.com/CLIP-HPC/SlurmCommander/internal/openapi" ) type SqueueJSON struct {