From 88991946af31eea568537a5062a85db5190a8069 Mon Sep 17 00:00:00 2001 From: Ben Schumacher Date: Mon, 23 Dec 2019 08:21:50 +0100 Subject: [PATCH] Fix invalid import in manifest.go (#77) --- build/manifest/main.go | 2 +- server/manifest.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/build/manifest/main.go b/build/manifest/main.go index fe8aaf8..c5eb60c 100644 --- a/build/manifest/main.go +++ b/build/manifest/main.go @@ -17,7 +17,7 @@ package main import ( "strings" - "github.com/mattermost/mattermost-server/model" + "github.com/mattermost/mattermost-server/v5/model" ) var manifest *model.Manifest diff --git a/server/manifest.go b/server/manifest.go index 0f06783..011a692 100644 --- a/server/manifest.go +++ b/server/manifest.go @@ -5,7 +5,7 @@ package main import ( "strings" - "github.com/mattermost/mattermost-server/model" + "github.com/mattermost/mattermost-server/v5/model" ) var manifest *model.Manifest