github.com/haalcala/mattermost-server-change-repo@v0.0.0-20210713015153-16753fbeee5f/services/upgrader/upgrader.go (about) 1 // Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved. 2 // See LICENSE.txt for license information. 3 // +build !linux 4 5 package upgrader 6 7 func CanIUpgradeToE0() error { 8 return &InvalidArch{} 9 } 10 11 func UpgradeToE0() error { 12 return &InvalidArch{} 13 } 14 15 func UpgradeToE0Status() (int64, error) { 16 return 0, &InvalidArch{} 17 }