Open
Description
Is it possible to use custom template instead of the default code template?
When wrote go code, I would like to write some unit test to run the code locally, to accomplish this, the line package main
need to be added into the source file. It would be convenient if I could generate go code with following template:
package main
<%= code %>
Then when submit code, the line package main
should be filtered out.
Thanks!