Skip to content

Commit

Permalink
修改包名和路径
Browse files Browse the repository at this point in the history
  • Loading branch information
forget-the-bright committed Oct 19, 2022
1 parent e72ed87 commit 0f3fe86
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 10 deletions.
5 changes: 3 additions & 2 deletions dde/dde.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,11 @@ import "C"

import (
"fmt"
ddeml "go-dde/ddeml"
. "go-dde/types"
"time"
"unsafe"

ddeml "github.com/forget-the-bright/go-dde/ddeml"
. "github.com/forget-the-bright/go-dde/types"
)

const (
Expand Down
2 changes: 1 addition & 1 deletion ddeml/ddeml.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package ddeml

import (
. "go-dde/types"
. "github.com/forget-the-bright/go-dde/types"
)

var (
Expand Down
3 changes: 2 additions & 1 deletion ddeml/ddeml_impl.go
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
package ddeml

import (
. "go-dde/types"
"syscall"
"unsafe"

. "github.com/forget-the-bright/go-dde/types"
)

func init() {
Expand Down
7 changes: 4 additions & 3 deletions demo/demo.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,11 @@ package demo

import (
"fmt"
"go-dde/dde"
"go-dde/ddeml"
. "go-dde/types"
"time"

"github.com/forget-the-bright/go-dde/dde"
"github.com/forget-the-bright/go-dde/ddeml"
. "github.com/forget-the-bright/go-dde/types"
)

func isHSZItem(hsz2 HSZ) HSZ {
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module go-dde
module github.com/forget-the-bright/go-dde

go 1.18
5 changes: 3 additions & 2 deletions main.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,10 @@ package main

import (
"fmt"
"go-dde/dde"
. "go-dde/types"
"time"

"github.com/forget-the-bright/go-dde/dde"
. "github.com/forget-the-bright/go-dde/types"
)

func runClient() {
Expand Down

0 comments on commit 0f3fe86

Please sign in to comment.