func setMaxUsers(cherryRooms *config.CherryRooms, roomName, value string) { var intValue int64 intValue, _ = strconv.ParseInt(value, 10, 64) cherryRooms.SetMaxUsers(roomName, int(intValue)) }