oknwsxOriginal post
Rank 1: Thread
While deploying I get the error my_module/sub: package my_module/sub is not in std (/usr/local/go/src/my_module/sub)
my code has only one module my_module and 2 packages main and sub
in my entry point main.go (package main) I have import "my_module/sub" which is standard
- I tried to rename pkg
mainintohandlerlike in the docs
Summary
Developers are encountering an error when deploying because the package they're importing is not in the standard directory. The issue arises from using multiple packages within a single module. One solution is to rename the package to follow the naming convention mentioned in the documentation.