-
Notifications
You must be signed in to change notification settings - Fork 651
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
file structure is empty #60
Comments
Same for me and I'm using Gemini. It produces console test with file names, but it doesn't create any files in the directory. Here is an example of console output for the file "order_service.go", but the file wasn't created: Filename: order_service.go package controllers
import (
"ecommerce-app-backend/models"
"gorm.io/gorm"
)
type OrderService interface {
CreateOrder(order *models.Order) error
GetOrdersByUser(userID uint, orders *[]models.Order) error
// ... (Add more order service methods as needed)
}
type OrderServiceImpl struct {
DB *gorm.DB
}
func (os *OrderServiceImpl) CreateOrder(order *models.Order) error {
// ... Create the order in the database
return os.DB.Create(order).Error
}
func (os *OrderServiceImpl) GetOrdersByUser(userID uint, orders *[]models.Order) error {
// ... Retrieve all orders for the user from the database
return os.DB.Where("user_id = ?", userID).Find(orders).Error
} |
Wow ... Is this still the case? And this couldn't be solved with this hack either: #44 ? |
@deniercounter - Thanks for replying. When I have some time, I will check out #44 and update accordingly. |
@deniercounter - I updated |
there is no file generated, after i ran
python3 maestro-anyapi.py
The text was updated successfully, but these errors were encountered: