[go-nuts] range func experiment typo?

2024-01-19 Thread 'Mark' via golang-nuts
In the RangefuncExperiment doc it says: for k, v := range g { ... } // g has type Seq[K,V], k and v have types K and V but shouldn't this be: for k, v := range g { ... } // g has type Seq2[K,V], k and v have types K and V Anyway, it looks interesting

[go-nuts] prevent download static files

2024-01-19 Thread Moein Ghasemi
how can i allow my client to only see my static files which served by server and prevent download . im using echo Thanks. -- 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

[go-nuts] Re: prevent download static files

2024-01-19 Thread 'qiulaidongfeng' via golang-nuts
Please show a code that rewrites your problem with as little as possible. Thanks. On Saturday, January 20, 2024 at 3:59:59 AM UTC+8 Moein Ghasemi wrote: > how can i allow my client to only see my static files which served by > server > and prevent download . > im using echo > > Thanks. > --