Skip to content

Instantly share code, notes, and snippets.

View LillyWu's full-sized avatar

LillyWu LillyWu

  • Bosch
  • Shanghai
View GitHub Profile
# -*- coding: utf-8 -*-
import glob
import os
for f in glob.glob('1/*.csv'):
# print(f)
new_filename = f.replace("node_cluster","svc")
print(f, new_filename)
package main
import "fmt"
// 定义接口类型 PeopleGetter 包含获取基本信息的方法
type PeopleGetter interface {
GetName() string
GetAge() int
}
package main
import (
"testing"
"net/http/httptest"
"fmt"
"net/http"
)
package main
import (
"encoding/json"
"fmt"
"io/ioutil"
"log"
"net/http"
"time"
"compress/zlib"