[go-nuts] Redfish Event Listener in golang

2023-06-13 Thread Gladiators Squad
Hello everyone, Do we have any redfish-event-listener written in golang? -- You received this message because you are subscribed to the Google Groups "golang-nuts" group. To unsubscribe from this group and stop receiving emails from it, send an email to

[go-nuts] Retrieve Path Parameters using inbuild http/Net package

2022-11-16 Thread Gladiators Squad
Hello Everyone, I'm developing a http server using inbuilt http/net package in golang. Is there any way to get the path parameters from end points without using any external third-party web framework? Thanks. -- You received this message because you are subscribed to the Google Groups

Re: [go-nuts] Re: Creating and Accessing DLL methods in GO

2022-10-03 Thread Gladiators Squad
We have some disk space restrictions and hence we do not want to include the common code as a library in the service. That will increase the size of each exe. We would like to keep the common code and service code independent of each other. Changes in one should not affect or cause recompilation

Re: [go-nuts] Re: Creating and Accessing DLL methods in GO

2022-10-03 Thread Gladiators Squad
We are trying to use a common code as a DLL which is shared by multiple services. The services need to support multiple platforms like Linux((amd64 and Armv7), Windows and FreeBSD. and we are using the following command to generate the DLL go build -buildmode=c-shared -o calc.so calc.go -- linux

[go-nuts] Debug Go DLL

2022-09-29 Thread Gladiators Squad
Hi everyone, Is there any way to debug DLL files once it is loaded? -- You received this message because you are subscribed to the Google Groups "golang-nuts" group. To unsubscribe from this group and stop receiving emails from it, send an email to golang-nuts+unsubscr...@googlegroups.com. To

[go-nuts] Re: Creating and Accessing DLL methods in GO

2022-09-29 Thread Gladiators Squad
is go-plugin supported by Windows?...We want to create go dll and tey to access through go code On Thursday, September 29, 2022 at 5:12:34 PM UTC+5:30 Brian Candler wrote: > My first reaction is, do you *really* want to call a Go DLL from a Go main > program? It seems to me like you will have

[go-nuts] Creating and Accessing DLL methods in GO

2022-09-29 Thread Gladiators Squad
Hi Everyone, I'm trying to create go DLL for the below program using "go build -buildmode=c-shared -o calc.so calc.go" *package mainimport "C"func main() {}//export SayHellofunc SayHello(name string) {fmt.Printf("Go says: Hello, %s!\n", name)}//export Addfunc Add(num0, num1 int) int

[go-nuts] Shared Goruntime across different microservices written in GO

2022-09-28 Thread Gladiators Squad
Hi Everyone, is there any way to separate go runtime from go binaries?. So that it can be shared across different micro services written in go. Instead of having separate go run time in each services. Thanks. -- You received this message because you are subscribed to the Google Groups