Added go.mod dependeny management

pull/5/head
Ingo Junefjord 2020-06-12 20:24:42 +02:00
parent 54360cca8d
commit 44e48f276c
2 changed files with 9 additions and 1 deletions

View File

@ -12,7 +12,7 @@ import (
)

import "gopkg.in/ldap.v3"
import "gopkg.in/robfig/cron.v3"
import "github.com/robfig/cron/v3"

func AddUsersToTeam(apiKeys GiteaKeys, users []Account, team int) bool {


8
go.mod Normal file
View File

@ -0,0 +1,8 @@
module github.com/tws-inc/gitea-group-sync

go 1.14

require (
github.com/robfig/cron/v3 v3.0.1
gopkg.in/ldap.v3 v3.1.0
)