Ran go fmt

This commit is contained in:
Harry Jeffery 2013-08-23 15:07:18 +01:00
parent 747269aed0
commit af4066c31b

View File

@ -5,8 +5,8 @@ import (
"fmt" "fmt"
"io" "io"
"log" "log"
"net"
"math/rand" "math/rand"
"net"
"regexp" "regexp"
"sort" "sort"
"strings" "strings"
@ -14,8 +14,8 @@ import (
) )
type Server struct { type Server struct {
eventChan chan Event eventChan chan Event
running bool running bool
name string name string
@ -69,7 +69,7 @@ var (
) )
func NewServer() (*Server, error) { func NewServer() (*Server, error) {
return &Server{eventChan: make(chan Event), return &Server{eventChan: make(chan Event),
name: "rosella", name: "rosella",
clientMap: make(map[string]*Client), clientMap: make(map[string]*Client),
channelMap: make(map[string]*Channel)}, nil channelMap: make(map[string]*Channel)}, nil