1
0
forked from x/ContextOS

kid mod context to contexts

This commit is contained in:
shaoying 2018-04-09 20:55:56 +08:00
parent 548cfe512e
commit 4745e5b1e2
16 changed files with 21 additions and 21 deletions

View File

@ -1,7 +1,7 @@
package aaa // {{{
// }}}
import ( // {{{
"context"
"contexts"
"crypto/md5"
"encoding/hex"

View File

@ -1,7 +1,7 @@
package cli // {{{
// }}}
import ( // {{{
"context"
"contexts"
"fmt"
"strconv"

View File

@ -1,7 +1,7 @@
package lex
import (
"context"
"contexts"
"fmt"
"strconv"
)

View File

@ -1,7 +1,7 @@
package log
import (
"context"
"contexts"
"fmt"
Log "log"
"strconv"

View File

@ -1,7 +1,7 @@
package mdb
import (
"context"
"contexts"
"database/sql"
_ "github.com/go-sql-driver/mysql"

View File

@ -1,7 +1,7 @@
package nfs // {{{
// }}}
import ( // {{{
"context"
"contexts"
"bufio"
"fmt"

View File

@ -2,7 +2,7 @@ package ssh
import (
"bufio"
"context"
"contexts"
"fmt"
"net"
"net/url"

View File

@ -1,7 +1,7 @@
package tcp // {{{
// }}}
import ( // {{{
"context"
"contexts"
"crypto/tls"
"fmt"

View File

@ -1,7 +1,7 @@
package web // {{{
// }}}
import ( // {{{
"context"
"contexts"
"encoding/json"
"html/template"

View File

@ -1,7 +1,7 @@
package yac
import (
"context"
"contexts"
"fmt"
"strconv"
"strings"

View File

@ -1,19 +1,19 @@
package main
import (
"context"
_ "context/aaa"
_ "context/cli"
_ "context/ssh"
"contexts"
_ "contexts/aaa"
_ "contexts/cli"
_ "contexts/ssh"
_ "context/mdb"
_ "context/nfs"
_ "context/tcp"
_ "context/web"
_ "contexts/mdb"
_ "contexts/nfs"
_ "contexts/tcp"
_ "contexts/web"
_ "context/lex"
_ "context/log"
_ "context/yac"
_ "contexts/lex"
_ "contexts/log"
_ "contexts/yac"
"os"
)