// Copyright 2021 Liuxiangchao iwind.liu@gmail.com. All rights reserved. package iplists import "github.com/TeaOSLab/EdgeAdmin/internal/web/actions/actionutils" type ListAction struct { actionutils.ParentAction } func (this *ListAction) Init() { this.Nav("", "", "list") } func (this *ListAction) RunGet(params struct{ ListId int64 }) { err := InitIPList(this.Parent(), params.ListId) if err != nil { this.ErrorPage(err) return } this.Show() }