Skip to content
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

Fix versionned packages #13

Merged
merged 2 commits into from
Feb 7, 2024
Merged

Conversation

juliens
Copy link
Member

@juliens juliens commented Aug 23, 2023

This PR fixes versionned package.

package demo

import "github.com/dep/v1"

type Demo interface {
  Get() dep.Toto
}

Before the PR this code was generated:

import "github.com/dep/v1"

func Get() v1.Toto {
}

After the PR:

import "github.com/dep/v1"

func Get() dep.Toto {
}

@traefiker traefiker merged commit 7742ff3 into traefik:master Feb 7, 2024
7 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
kind/bug/fix a bug fix
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants