Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

issues/24: Remove struct tags from display #40

Open
wants to merge 4 commits into
base: main
Choose a base branch
from
Open

issues/24: Remove struct tags from display #40

wants to merge 4 commits into from

Conversation

komuw
Copy link
Owner

@komuw komuw commented Feb 21, 2023

What(What have you changed/added/removed?)

Why(Why did you change/add/remove it?)

@komuw komuw changed the title issues/24 issues/24: Remove struct tags from display Feb 21, 2023
@komuw
Copy link
Owner Author

komuw commented Feb 21, 2023

Problem is that this struct field:

OneHttpRequest http.Request

is now(on this branch) been displayed as;

FIELDS: [
	....
	SliceOfHttpRequest []http.Request 
	OneHttpRequest struct {Method string, URL *url.URL, Proto string, ProtoMajor int, ProtoMinor int, Header http.Header, Body io.ReadCloser, GetBody func() (io.ReadCloser, error), ContentLength int64, TransferEncoding []string, Close bool, Host string, Form url.Values, PostForm url.Values, MultipartForm *multipart.Form, Trailer http.Header, RemoteAddr string, RequestURI string, TLS *tls.ConnectionState, Cancel <-chan struct {}, Response *http.Response} 

instead of;

FIELDS: [
	...
	SliceOfHttpRequest []http.Request 
	OneHttpRequest http.Request 

@komuw
Copy link
Owner Author

komuw commented Jan 31, 2024

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

remove struct tags from display
1 participant