migrate to my main gitlab

This commit is contained in:
Aidan 2020-06-28 13:47:44 -07:00
parent d17e975cc8
commit c7008bb19e
No known key found for this signature in database
GPG key ID: 327711E983899316
12 changed files with 20 additions and 20 deletions

View file

@ -17,7 +17,7 @@
package ast
import "git.callpipe.com/aidan/shs/log"
import "gitlab.com/whom/shs/log"
func (t *Token) Eval(funcs FuncTable, vars VarTable) (*Token, bool) {
if t == nil {

View file

@ -17,7 +17,7 @@
package ast
import "git.callpipe.com/aidan/shs/log"
import "gitlab.com/whom/shs/log"
type Operation func(*Token, VarTable, FuncTable) *Token

View file

@ -18,7 +18,7 @@
package ast
import (
"git.callpipe.com/aidan/shs/log"
"gitlab.com/whom/shs/log"
"unicode"
)

View file

@ -23,7 +23,7 @@ import (
"math"
"strconv"
"strings"
"git.callpipe.com/aidan/shs/log"
"gitlab.com/whom/shs/log"
)
// Trigger this if you are using this for a shell

View file

@ -20,8 +20,8 @@ package main
import (
"strings"
"os"
"git.callpipe.com/aidan/shs/log"
"git.callpipe.com/aidan/shs/ast"
"gitlab.com/whom/shs/log"
"gitlab.com/whom/shs/ast"
)
func main() {

View file

@ -22,9 +22,9 @@ import (
"fmt"
"strconv"
"github.com/chzyer/readline"
"git.callpipe.com/aidan/shs/ast"
"git.callpipe.com/aidan/shs/log"
"git.callpipe.com/aidan/shs/stdlib"
"gitlab.com/whom/shs/ast"
"gitlab.com/whom/shs/log"
"gitlab.com/whom/shs/stdlib"
)
const (

View file

@ -20,8 +20,8 @@ package stdlib
import (
"fmt"
"strconv"
"git.callpipe.com/aidan/shs/ast"
"git.callpipe.com/aidan/shs/log"
"gitlab.com/whom/shs/ast"
"gitlab.com/whom/shs/log"
)
// PKG WIDE TODO: BIGNUM SYSTEM

View file

@ -24,8 +24,8 @@ import (
"os/exec"
"syscall"
"os/signal"
"git.callpipe.com/aidan/shs/ast"
"git.callpipe.com/aidan/shs/log"
"gitlab.com/whom/shs/ast"
"gitlab.com/whom/shs/log"
)
var bgProcs = make([]*exec.Cmd, 0)

View file

@ -19,8 +19,8 @@ package stdlib
import (
"os"
"git.callpipe.com/aidan/shs/ast"
"git.callpipe.com/aidan/shs/log"
"gitlab.com/whom/shs/ast"
"gitlab.com/whom/shs/log"
)
func cd(in *ast.Token, vt ast.VarTable, ft ast.FuncTable) *ast.Token {

View file

@ -18,8 +18,8 @@
package stdlib
import (
"git.callpipe.com/aidan/shs/ast"
"git.callpipe.com/aidan/shs/log"
"gitlab.com/whom/shs/ast"
"gitlab.com/whom/shs/log"
)
/* EXPAND

View file

@ -19,7 +19,7 @@ package stdlib
import (
"os"
"git.callpipe.com/aidan/shs/ast"
"gitlab.com/whom/shs/ast"
)
func GenFuncTable() ast.FuncTable {

View file

@ -19,8 +19,8 @@ package stdlib
import (
"fmt"
"git.callpipe.com/aidan/shs/ast"
"git.callpipe.com/aidan/shs/log"
"gitlab.com/whom/shs/ast"
"gitlab.com/whom/shs/log"
)
func concat(in *ast.Token, vt ast.VarTable, ft ast.FuncTable) *ast.Token {