Update go.mod

This commit is contained in:
2025-09-25 08:04:49 +00:00
parent 173b2cc388
commit c42e79c832
17 changed files with 23 additions and 23 deletions

View File

@@ -2,7 +2,7 @@ image: alpine/edge
packages:
- go
sources:
- https://github.com/emersion/go-webdav
- https://git.ma-al.com/maal/go-webdav
tasks:
- build: |
cd go-webdav

View File

@@ -7,9 +7,9 @@ import (
"fmt"
"time"
"git.ma-al.com/maal/go-webdav"
"git.ma-al.com/maal/go-webdav/internal"
"github.com/emersion/go-ical"
"github.com/emersion/go-webdav"
"github.com/emersion/go-webdav/internal"
)
var CapabilityCalendar = webdav.Capability("calendar-access")

View File

@@ -11,9 +11,9 @@ import (
"strings"
"time"
"git.ma-al.com/maal/go-webdav"
"git.ma-al.com/maal/go-webdav/internal"
"github.com/emersion/go-ical"
"github.com/emersion/go-webdav"
"github.com/emersion/go-webdav/internal"
)
// DiscoverContextURL performs a DNS-based CardDAV service discovery as

View File

@@ -5,7 +5,7 @@ import (
"fmt"
"time"
"github.com/emersion/go-webdav/internal"
"git.ma-al.com/maal/go-webdav/internal"
)
const namespace = "urn:ietf:params:xml:ns:caldav"

View File

@@ -12,9 +12,9 @@ import (
"strings"
"time"
"git.ma-al.com/maal/go-webdav"
"git.ma-al.com/maal/go-webdav/internal"
"github.com/emersion/go-ical"
"github.com/emersion/go-webdav"
"github.com/emersion/go-webdav/internal"
)
// TODO if nothing more Caldav-specific needs to be added this should be merged with carddav.PutAddressObjectOptions

View File

@@ -6,9 +6,9 @@ package carddav
import (
"time"
"git.ma-al.com/maal/go-webdav"
"git.ma-al.com/maal/go-webdav/internal"
"github.com/emersion/go-vcard"
"github.com/emersion/go-webdav"
"github.com/emersion/go-webdav/internal"
)
var CapabilityAddressBook = webdav.Capability("addressbook")

View File

@@ -8,8 +8,8 @@ import (
"strings"
"testing"
"git.ma-al.com/maal/go-webdav"
"github.com/emersion/go-vcard"
"github.com/emersion/go-webdav"
)
type testBackend struct {

View File

@@ -11,9 +11,9 @@ import (
"strings"
"time"
"git.ma-al.com/maal/go-webdav"
"git.ma-al.com/maal/go-webdav/internal"
"github.com/emersion/go-vcard"
"github.com/emersion/go-webdav"
"github.com/emersion/go-webdav/internal"
)
// DiscoverContextURL performs a DNS-based CardDAV service discovery as

View File

@@ -4,7 +4,7 @@ import (
"encoding/xml"
"fmt"
"github.com/emersion/go-webdav/internal"
"git.ma-al.com/maal/go-webdav/internal"
)
const namespace = "urn:ietf:params:xml:ns:carddav"

View File

@@ -11,9 +11,9 @@ import (
"strconv"
"strings"
"git.ma-al.com/maal/go-webdav"
"git.ma-al.com/maal/go-webdav/internal"
"github.com/emersion/go-vcard"
"github.com/emersion/go-webdav"
"github.com/emersion/go-webdav/internal"
)
type PutAddressObjectOptions struct {

View File

@@ -7,7 +7,7 @@ import (
"net/http"
"time"
"github.com/emersion/go-webdav/internal"
"git.ma-al.com/maal/go-webdav/internal"
)
// HTTPClient performs HTTP requests. It's implemented by *http.Client.

View File

@@ -7,7 +7,7 @@ import (
"net/http"
"os"
"github.com/emersion/go-webdav"
"git.ma-al.com/maal/go-webdav"
)
func main() {

View File

@@ -3,7 +3,7 @@ package webdav
import (
"encoding/xml"
"github.com/emersion/go-webdav/internal"
"git.ma-al.com/maal/go-webdav/internal"
)
var (

View File

@@ -13,7 +13,7 @@ import (
"path/filepath"
"strings"
"github.com/emersion/go-webdav/internal"
"git.ma-al.com/maal/go-webdav/internal"
)
// LocalFileSystem implements FileSystem for a local directory.

2
go.mod
View File

@@ -1,4 +1,4 @@
module github.com/emersion/go-webdav
module git.ma-al.com/maal/go-webdav
go 1.13

View File

@@ -9,7 +9,7 @@ import (
"strconv"
"strings"
"github.com/emersion/go-webdav/internal"
"git.ma-al.com/maal/go-webdav/internal"
)
// FileSystem is a WebDAV server backend.

View File

@@ -6,7 +6,7 @@ package webdav
import (
"time"
"github.com/emersion/go-webdav/internal"
"git.ma-al.com/maal/go-webdav/internal"
)
// FileInfo holds information about a WebDAV file.