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 // {{{ package aaa // {{{
// }}} // }}}
import ( // {{{ import ( // {{{
"context" "contexts"
"crypto/md5" "crypto/md5"
"encoding/hex" "encoding/hex"

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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