From cba9b5039e9719ccd33aee2559b31e9cfa979d87 Mon Sep 17 00:00:00 2001 From: Nicholas Stafie Date: Sat, 27 Feb 2016 01:22:02 +0200 Subject: [PATCH] Refactor VerificationLevel consts --- structs.go | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/structs.go b/structs.go index 9924e3b..34fe7f1 100644 --- a/structs.go +++ b/structs.go @@ -150,10 +150,10 @@ type VerificationLevel int // Constants for VerificationLevel levels from 0 to 3 inclusive const ( - VerificationLevelNone VerificationLevel = iota - VerificationLevelLow VerificationLevel = iota - VerificationLevelMedium VerificationLevel = iota - VerificationLevelHigh VerificationLevel = iota + VerificationLevelNone VerificationLevel = iota + VerificationLevelLow + VerificationLevelMedium + VerificationLevelHigh ) // A Guild holds all data related to a specific Discord Guild. Guilds are also