swaps the corso go module from github.com/ alcionai/corso to github.com/alcionai/corso/src to align with the location of the go.mod and go.sum files inside the repo. All other changes in the repository update the package imports to the new module path.
10 lines
93 B
Go
10 lines
93 B
Go
package main
|
|
|
|
import (
|
|
"github.com/alcionai/corso/src/cli"
|
|
)
|
|
|
|
func main() {
|
|
cli.Handle()
|
|
}
|