From 64ffc84791670b06b8dca882f1cf2ce47b65e519 Mon Sep 17 00:00:00 2001
From: yoyofx <zlhxd@hotmail.com>
Date: Thu, 17 Dec 2020 20:32:48 +0800
Subject: [PATCH] deleted none files

---
 abstractions/hostenv/hostconfig.go   |  7 -------
 abstractions/hostenv/serverconfig.go | 13 -------------
 2 files changed, 20 deletions(-)
 delete mode 100644 abstractions/hostenv/hostconfig.go
 delete mode 100644 abstractions/hostenv/serverconfig.go

diff --git a/abstractions/hostenv/hostconfig.go b/abstractions/hostenv/hostconfig.go
deleted file mode 100644
index 65366b0a..00000000
--- a/abstractions/hostenv/hostconfig.go
+++ /dev/null
@@ -1,7 +0,0 @@
-package hostenv
-
-type HostConfig struct {
-	Name     string       `mapstructure:"name"`
-	Metadata string       `mapstructure:"metadata"`
-	Server   ServerConfig `mapstructure:"server"`
-}
diff --git a/abstractions/hostenv/serverconfig.go b/abstractions/hostenv/serverconfig.go
deleted file mode 100644
index e609ce6e..00000000
--- a/abstractions/hostenv/serverconfig.go
+++ /dev/null
@@ -1,13 +0,0 @@
-package hostenv
-
-type ServerConfig struct {
-	ServerType     string       `mapstructure:"type"`
-	Address        string       `mapstructure:"address"`
-	MaxRequestSize string       `mapstructure:"max_request_size"`
-	Static         StaticConfig `mapstructure:"static"`
-}
-
-type StaticConfig struct {
-	Patten  string `mapstructure:"patten"`
-	WebRoot string `mapstructure:"webroot"`
-}